Gathering detailed insights and metrics for @nest-middlewares/express-session
Gathering detailed insights and metrics for @nest-middlewares/express-session
Gathering detailed insights and metrics for @nest-middlewares/express-session
Gathering detailed insights and metrics for @nest-middlewares/express-session
npm install @nest-middlewares/express-session
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
382 Stars
150 Commits
33 Forks
8 Watching
2 Branches
11 Contributors
Updated on 15 Nov 2024
TypeScript (99.6%)
Shell (0.4%)
Cumulative downloads
Total Downloads
Last day
347.9%
981
Compared to previous day
Last week
36.4%
3,681
Compared to previous week
Last month
402.7%
9,034
Compared to previous month
Last year
33.7%
27,980
Compared to previous year
1
Add the most common Express middlewares to your Nest app with one line.
This packages requires the following:
Please do not open issues asking to support a middleware – I've tried to make this project really easy to implement and extend. See CONTRIBUTING.md for more information on how to create a new middleware, and I'll merge and release it if it meets the contributing guidelines. Thank you for your contribution.
Take the name of your favorite Express middleware and prefix it with @nest-middlewares/
.
$ npm install --save @nest-middlewares/helmet
In your module:
1import { HelmetMiddleware } from '@nest-middlewares/helmet'; // (look around in the source code for the exact class name) 2 3@Module(...) 4export class MyModule { 5 configure(consumer: MiddlewaresConsumer) { 6 // IMPORTANT! Call Middleware.configure BEFORE using it for routes 7 HelmetMiddleware.configure( /* options as per helmet docs */ ) 8 consumer.apply(HelmetMiddleware).forRoutes( 9 /* your routes */ 10 ); 11 } 12}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/11 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
16 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More