New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

node-sid

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-sid

Simple id generator for node. shortid is much more powerful, but was far overpowered for my needs. So if anyone can need this - here's how it works

latest
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

node-sid

Simple id generator for node. shortid is much more powerful, but was far overpowered for my needs. So if anyone can need this - here's how it works

##installation

 $ npm install node-sid

Usage

 require('node-sid')().create()
 'r8j4jX'

creates a 6 digit id, looking like r8j4jX

 require('node-sid')().create('PRE')
'PRE_1RK9wZ'

creates a 6 digit id with a prefix

 require('node-sid')().create('PRE',8)
'PRE_87bgPYE7'

creates a 8 digit id with a certain length and prefix

###Instance Options

 require('node-sid')({
   seed:'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTOVWXYZ',
   len:6,
   headerField:'x-node-sid'
 })

seed: specifies the chars to use for the id - please be aware that the lesser chars you use the higher the possibility for dups will be. Default are Numbers and upper+lower Alphas. len: length (same as if specified in the create call) headerField: special handling when used as an express middleware when used on proxies.

###Using it as an express middleware

 app.use(require('node-sid')().middleware);

this will mark every request with an additional http-header x-node-sid (or the one you specified in the options). Mainly this is thought to be used in proxy-like services in distributed environments. The Middleware will append "their" id to it, forming a unique global request-id which looks like FIRST_SvTMpu.SECOND_LR9qfp.THIRD_0Jujaw

License

MIT

FAQs

Package last updated on 31 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts