Gathering detailed insights and metrics for gulp-nsp
Gathering detailed insights and metrics for gulp-nsp
Gathering detailed insights and metrics for gulp-nsp
Gathering detailed insights and metrics for gulp-nsp
npm install gulp-nsp
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
40 Stars
108 Commits
16 Forks
9 Watchers
2 Branches
10 Contributors
Updated on Jan 30, 2025
Latest Version
3.0.1
Package Id
gulp-nsp@3.0.1
Size
3.18 kB
NPM Version
5.6.0
Node Version
8.9.4
Published on
Feb 15, 2018
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
4
To install the gulp-nsp module into your project simply run
1npm install gulp-nsp --save
Then in your gulpfile, add the following task.
1var gulpNSP = require('gulp-nsp'); 2 3//To check your project 4gulp.task('nsp', function (cb) { 5 gulpNSP({package: __dirname + '/package.json'}, cb); 6});
1//If you're using a shrinkwrap file, pass both the shrinkwrap and the package.json 2gulp.task('nsp', function (cb) { 3 gulpNSP({ 4 shrinkwrap: __dirname + '/npm-shrinkwrap.json', 5 package: __dirname + '/package.json' 6 }, cb); 7});
If you don't want to stop your gulp flow if some vulnerabilities have been found use the stopOnError option:
1gulp.task('nsp', function (cb) { 2 gulpNSP({ 3 package: __dirname + '/package.json', 4 stopOnError: false 5 }, cb); 6});
If you want to use an alternative output reporter provided by nsp use the output option.
1gulp.task('nsp', function (cb) { 2 gulpNSP({ 3 package: __dirname + '/package.json', 4 reporter: 'summary' 5 }, cb); 6});
If you want to use a proxy you can configure it via this option.
1gulp.task('nsp', function (cb) { 2 gulpNSP({ 3 package: __dirname + '/package.json', 4 proxy: 'http://127.0.0.1:8080' 5 }, cb); 6});
The Node Security CLI supports adding exceptions. These are advisories that you have evaluated and personally deemed unimportant for your project. Instructions are available on the nsp cli repository.
Copyright (c) 2016 by ^Lift Security
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note: the above text describes the license for the code located in this repository only. Usage of this tool or the API this tool accesses implies acceptance of our terms of service.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
project is archived
Details
Reason
Found 2/24 approved changesets -- score normalized to 0
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
43 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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