0.0.6 • Published 10 years ago

hand-stateful v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

hand-stateful

http stateful ( cookie & session support), compatible with handover, connect/express

Why made this?

express-session, recommanded by connect/express, overwrite cookie. so, I can use cookie & session concurrently.

This module is support cookie (by cookies), and session.

Install this, then you can enjoy stateful http!

Features

  • compatible with connect/express
  • cookie - set, get ( visit cookies)
  • session - set, get
  • default session store = File
  • session store can replace with any object(or class instance) has 4 function: list, get, set, del
  • currently, default file store, support get/set only, list/del is future works.

Examples

  ho = require 'handover'
  stateful = require 'hand-stateful'
  http = require 'http'
 
  getSession = (req,res, next)-> 
      return next() unless  req.url is '/get'
      data = req.session.get('s-key') 
      res.end data
  setSession = (req,res, next)-> 
      return next() unless  req.url is '/set'
      req.session.set('s-key', 'test-result') 
      res.end 'set'

  server = http.createServer ho.make [
    stateful()
    getSession
    setSession
  ]

with default option.

  ho = require 'handover'
  stateful = require 'hand-stateful'
  http = require 'http'
 
  server = http.createServer ho.make [
    stateful
      store : stateful.FileStore
        dir : (process.env.TMPDIR || process.env.TEMP)
        prefix : 'ho-sssion-' 
    getSession
    setSession
  ]

with sepecific store.

    connect = require('connect') 
    app = connect()
    app.use stateful
      store : stateful.FileStore
        dir : (process.env.TMPDIR || process.env.TEMP)
        prefix : 'ho-sssion-' 
    app.use getSession
    app.use setSession 

with connect, specific store

License

(The MIT License)

Copyright (c) 2014 junsik <js@seth.h@google.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.0.6

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago