jchef
v0.9.2
Published
jchef is a tool for generate a simple HTML, Javascript or Typescript projects
Downloads
2
Readme
jchef
jchef is a tool for generate a simple HTML, Javascript or Typescript projects
Install
$ npm i -g jchef
Usage
Simple site
$ jchef --site HelloWorld
Result:
├── .
│ └── HelloWorld
│ ├── index.html
│ ├── index.js
│ └── style.css
Typescript project (Webpack + Jest)
$ jchef --tslib HelloWorld
Result:
├── .
│ └── HelloWorld
│ ├── src
│ │ ├── helpers.ts
│ │ └── index.ts
│ ├── test
│ │ └── helpers.test.ts
│ ├── package.json
│ ├── tsconfig.json
│ └── webpack.config.js