KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
node-sessions
★ 13
Open GitHub ↗
NodeJS Session Management
Download README (.md)
Explore Similar Repositories
SimpleSocketConnection
:
Simple socket connections in iOS
IRCBalloon
:
IRC / Justin.tv Chatroom / Twitch Chatroom popup notification.
connect-architect
:
build a connect server using architect plugins
HTMLFeedback
:
jQuery website feedback plugin (like Google) using the canvas element.
rOCCI
:
A Ruby OCCI Framework
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
node-sessions
?
Download (.md)
Sessions  ======== ## About Sessions is a session management module designed to help you manage user sessions. It supports multiple stores to save your data and can be easly attached to an http server. ## Installing Install using NPM: npm install sessions ## Usage var http = require("http"), Sessions = require("sessions"), sessionHandler = new Sessions(); // memory store by default http.createServer(function (req, res) { var session = sessionHandler.httpRequest(req, res); // check session for possible methods }); This is not only for http requests, check examples to see a simple example for any type of session usage.