npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

protected-cookie

v1.1.2

Published

Middleware for Express.js for setting HttpOnly cookie and get access to existance of this cookie

Downloads

49

Readme

CircleCI

NPM

Express protected cookie middleware

Middleware for express to protect cookie making it HttpOnly. Also this Middleware adds flag to check for presence of this property (NOT HttpOnly).

npm install protected-cookie --save
'use strict'

var express = require('express');
var protectedCookie = require('protected-cookie');

app = express();
app.use(protectedCookie('check', '__'));
...

Tests

cd protected-cookie
npm test

Use case

You want to implement authorization and store auth_token in cookie. But if it will not be HttpOnly, your client side can be subjected to XSS. In other way you want to check if cookie is set on client side.

Solution - use this middleware. Server checks your cookie and validate it for each request. But on client side you will have access to check your cookie is set or not.

API options

  protectedCookie(flag, delimiter);
  • flag: String optional wich set flag to cookie name with '_' delimiter, which can be changed (if cookie name is token, then existance flag name will be token_exists which is true or false)
  • delimiter - String optional delimiter between cookie name and flag

Methods

Middleware add methods protectedCookie and clearProtectedCookie for using instead of cookie and clearCookie with the same parameters. You can check it here Express api. But when you set some cookie in this way, method protectedCookie adds this cookie with HttpOnly option for inaccessibility by javascript and also adds existance flag of this cookie with HttpOnly set to false for access.

Example

If you set cookie by this way

  function(req, res, next) {
    ...
    res.protectedCookie('auth_token', 'value');
    ...
  }

You will get next result in cookie

  auth_token = 'value', // which is HttpOnly
  auth_token_exists = true // which is NOT HttpOnly for access on client side

Method clearProtectedCookie clears both auth_token and auth_token_exists keys from cookie.