Gathering detailed insights and metrics for nestjs-web-console
Gathering detailed insights and metrics for nestjs-web-console
Gathering detailed insights and metrics for nestjs-web-console
Gathering detailed insights and metrics for nestjs-web-console
npm install nestjs-web-console
Typescript
Module System
Node Version
NPM Version
TypeScript (99.38%)
JavaScript (0.62%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
10 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Oct 30, 2021
Latest Version
1.0.2
Package Id
nestjs-web-console@1.0.2
Unpacked Size
105.41 kB
Size
19.71 kB
File Count
46
NPM Version
9.5.1
Node Version
18.16.1
Published on
Jan 28, 2024
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
Command from anywhere.
The goal is to create a simple web interface to run commands on the server.
1npm install nestjs-web-console --save 2yarn add nestjs-web-console
This library is a NestJs module with express dependency so make sure following libs are also installed.
1npm install @nestjs/common @nestjs/core express rxjs --save 2yarn add @nestjs/common @nestjs/core express rxjs
1import {Module} from '@nestjs/common'; 2import {WebConsoleModule} from "nestjs-web-console"; 3 4@Module({ 5 imports: [WebConsoleModule.forRoot({ 6 endpoint: 'console', 7 options: { 8 name: 'My App', 9 masterPin: 'very-secure-pin' 10 } 11 })] 12}) 13export class AppModule {}
1import {Module} from '@nestjs/common'; 2import {WebConsoleModule} from "nestjs-web-console"; 3 4@Module({ 5 imports: [WebConsoleModule.forRootAsync({ 6 endpoint: 'console', 7 useFactory: (configService: ConfigService) => ({ 8 name: configService.get('SERVICE_NAME'), 9 masterPin: configService.get('MASTER_PIN') 10 }), 11 inject: [ConfigService] 12 })] 13}) 14export class AppModule {}
To use csv temp files run
1npm install csv-express --save
and in main.ts file
1import 'csv-express';
1npm run test
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/10 approved changesets -- score normalized to 0
Reason
no SAST tool detected
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
37 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