restsession

1.4.0 • Public • Published

restsession - Store your express-session in a RESTful way

RESTful API Specification (endpoint)

Get list of all Sessions


Request:

GET /

Response:

[
  {
    "key": "value"
  },
  ... sessions
]

Remove everything


Request:

DELETE /

Reponse:

{
  "status": "OK"
}

Get one Session


GET /{sid}

Response:

{
  "key": "value"
}

Delete one Session


DELETE /{sid}

Reponse:

{
  "status": "OK"
}

Add one Session


Request:

POST /{sid}
 
{
  "key": "value"
}

Response:

{
  "key": "value"
}

This can also be used in conjuction with the ?ping URL parameter. Then the API is able to update any existing expire times of the session if any.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i restsession

    Weekly Downloads

    0

    Version

    1.4.0

    License

    MIT

    Last publish

    Collaborators

    • jankal