https://github.com/pmcalabrese/node-scaffolder
Node-scaffolder is an interactive command line tool to create Node.js projects quickly. With just 3 questions (which takes 10 seconds) you can scaffold a project with your favorite language (JS or TS) bundler (Babel, Webpack 4, Rollup, TSC) and test setup (coming soon).
https://github.com/pmcalabrese/node-scaffolder
nodejs scaffold-framework scaffolding
Last synced: 12 months ago
JSON representation
Node-scaffolder is an interactive command line tool to create Node.js projects quickly. With just 3 questions (which takes 10 seconds) you can scaffold a project with your favorite language (JS or TS) bundler (Babel, Webpack 4, Rollup, TSC) and test setup (coming soon).
- Host: GitHub
- URL: https://github.com/pmcalabrese/node-scaffolder
- Owner: pmcalabrese
- Created: 2018-04-15T14:05:03.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-14T21:12:41.000Z (about 7 years ago)
- Last Synced: 2024-11-14T08:14:10.191Z (over 1 year ago)
- Topics: nodejs, scaffold-framework, scaffolding
- Language: JavaScript
- Homepage:
- Size: 94.7 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-scaffolder
Node-scaffolder is an interactive command line tool to create Node.js project quickly. With it, with just 3 questions (which takes 10 seconds) you can scaffold a project with your favorite language (JS or TS) bundler (Babel, Webpack 4, Rollup, TSC) and test setup.
[](https://asciinema.org/a/185638)
## Install
npm install node-scaffolder -g
## How it works
create a folder
mkdir my_new_project
move in to that folder
cd my_new_project
create a package.json file with
npm init
now you can run node-scaffolder
node-scaffolder
you will be prompted with some questions follow them... and you are set,
no more copy and paste :) . Now you can install the dependencies with
npm install
for iand finally run it with
npm start