Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gguridi/tornado-securecookie
Tornado signed cookies implementation for nodejs.
https://github.com/gguridi/tornado-securecookie
securecookie tornado
Last synced: 24 days ago
JSON representation
Tornado signed cookies implementation for nodejs.
- Host: GitHub
- URL: https://github.com/gguridi/tornado-securecookie
- Owner: gguridi
- License: mit
- Created: 2020-03-30T16:57:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T22:33:21.000Z (about 4 years ago)
- Last Synced: 2024-11-20T04:47:18.303Z (about 1 month ago)
- Topics: securecookie, tornado
- Language: JavaScript
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tornado-securecookie
[![Build Status](https://travis-ci.org/gguridi/tornado-securecookie.svg?branch=master)](https://travis-ci.org/gguridi/tornado-securecookie)
![Publish](https://github.com/gguridi/tornado-securecookie/workflows/Publish/badge.svg)
[![codecov](https://codecov.io/gh/gguridi/tornado-securecookie/branch/master/graph/badge.svg)](https://codecov.io/gh/gguridi/tornado-securecookie)This package enables the creation of signed cookies to be able to send them
to third-party services. This package is intended for testing purposes only as
the secret has to be passed as string.The package also enables the decoding of the signed cookie to test third-party
services that might encode them for us.## Dependencies
Dependencies are only needed to be able to test the package. In order to install
the required dependencies please type:```bash
npm install
```## Installation
To install this package in your project simply type:
```bash
npm install tornado-securecookie
```## Testing
To test the package:
```bash
npm test
```