Gathering detailed insights and metrics for development-tool-node
Gathering detailed insights and metrics for development-tool-node
Gathering detailed insights and metrics for development-tool-node
Gathering detailed insights and metrics for development-tool-node
cleye
The intuitive CLI development tool
node-oojs-tool
the tool for web development. Gzip/Compress js , css, etc...
@utkarsh1905/node-cli-project
Development Automation Tool
fresco-development-tool-cli
Node command line tool to be used for general development and workflow enhancement.
npm install development-tool-node
Typescript
Module System
Node Version
NPM Version
TypeScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
64 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Oct 18, 2016
Latest Version
2.1.0
Package Id
development-tool-node@2.1.0
Size
6.55 kB
NPM Version
5.5.1
Node Version
8.9.0
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
19
7
This repo is for distribution on npm
. The source for this module is in the
main repo.
Please file issues and pull requests against that repo.
This package use to develop kit for typescript node project development via gulp tasks.
You can install this package either with npm
.
1 2npm install development-tool-node 3
You can import
modules:
1import * as gulp from 'gulp'; 2import { Development } from 'development-tool'; 3import { INodeTaskOption } from 'development-tool-node'; 4
1Development.create(gulp, __dirname, { 2 tasks:[ 3 <INodeTaskOption>{ 4 src: 'src', 5 //testSrc: '...', 6 //e2eSrc: '...', 7 //watchSrc: '...' 8 dist: 'lib', 9 // buildDist:'build path', 10 // releaseDist: 'release path', 11 // depolyDist: 'depoly path' 12 asserts:{ 13 json: 'src/**/*.json', 14 css:'src/common/**/*.css', 15 moduleBcss: ['src/moduleB/**/*.css'], 16 moduleAcss: { 17 src: ['src/apath/**/*.css', 'src/bpath/**/*.css'], 18 dist:'dist path', 19 buildDist:'buildDist path', 20 releaseDist: 'release Distpath', 21 depolyDist: 'depoly Distpath' 22 }, 23 ... 24 }, 25 26 loader: 'development-tool-node', 27 // add pipe works for module tasks. 28 pipe(stream, ctx, dist, gulp){ ... } 29 pipes: Pipe[] | (ctx, dist, gulp)=> Pipe[], 30 output: OutputPipe[] | (stream, ctx, dist, gulp)=> OutputPipe[] 31 } 32 ] 33});
1Development.create(gulp, __dirname, { 2 tasks:{ 3 src: 'src', 4 //testSrc: '...', 5 //e2eSrc: '...', 6 //watchSrc: '...' 7 dist: 'lib', 8 // buildDist:'build path', 9 // releaseDist: 'release path', 10 // depolyDist: 'depoly path' 11 loader: 'development-tool-node', 12 tasks:[ 13 { 14 src: 'files be dealt with', 15 //testSrc: '...', 16 //e2eSrc: '...', 17 //watchSrc: '...' 18 dist: 'dist path', 19 // buildDist:'build path', 20 // releaseDist: 'release path', 21 // depolyDist: 'depoly path' 22 loader:'development-tool-*' //the module must implement ITaskDefine. 23 }, 24 { 25 src: ['src/apath/**/*.css', 'src/bpath/**/*.css'], 26 //testSrc: '...', 27 //e2eSrc: '...', 28 //watchSrc: '...' 29 dist: 'dist path', 30 // buildDist:'build path', 31 // releaseDist: 'release path', 32 // depolyDist: 'depoly path' 33 loader: { 34 configModule: path.join(__dirname, './src/task.ts'), //the module must implement ITaskDefine. 35 dir: [path.join(__dirname, './src/mytasks')] 36 }, 37 tasks: [ 38 { 39 src: 'files be dealt with', 40 //testSrc: '...', 41 //e2eSrc: '...', 42 //watchSrc: '...' 43 dist: 'dist path', 44 // buildDist:'build path', 45 // releaseDist: 'release path', 46 // depolyDist: 'depoly path' 47 loader: { 48 //./src/mytasks folder must has module implement ITaskDefine. 49 dir: path.join(__dirname, './src/mytasks') 50 } 51 }, 52 { 53 src: 'files be dealt with', 54 //testSrc: '...', 55 //e2eSrc: '...', 56 //watchSrc: '...' 57 dist: 'dist path', 58 // buildDist:'build path', 59 // releaseDist: 'release path', 60 // depolyDist: 'depoly path' 61 loader: { 62 module: path.join(__dirname, './src/mytasks/dosomething'), 63 // add pipe works for module tasks. 64 pipe(stream, ctx, dist, gulp){ ... } 65 pipes: Pipe[] | (ctx, dist, gulp)=> Pipe[], 66 output: OutputPipe[] | (stream, ctx, dist, gulp)=> OutputPipe[] 67 configModule: path.join(__dirname, './src/mytasks/config') //the module must implement ITaskDefine. 68 }, 69 // also can add pipe works for module tasks here. 70 pipe(stream, ctx, dist, gulp){ ... } 71 pipes: Pipe[] | (ctx, dist, gulp)=> Pipe[], 72 output: OutputPipe[] | (stream, ctx, dist, gulp)=> OutputPipe[] 73 } 74 ] 75 } 76 ... 77 ] 78 } 79});
https://github.com/zhouhoujun/development-tool-node.git
Documentation is available on the development-tool-node docs site.
MIT © Houjun
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- 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
license file not detected
Details
Reason
branch protection not enabled on development/release branches
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