npm-create-node
v1.0.2
Published
quickly create node npm package, within Typescript
Maintainers
Readme
npm-create-node
Quickly create a npm package for node, within TypeScript.
Inspired by npm-create. If you just want to create a normal npm package, please use it.
Installation & Usage
npm install npm-create-node
// yarn add npm-create-nodeAPI
pkgGenerator.createPkg('example', process.cwd()).then((res) => {
if (res.success) {
//...
}
});CLI
npm install npm-create-node -g
npm-create-node example --path ${target_path}