Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guillaumearm/node-skeleton
My skeleton for node projects
https://github.com/guillaumearm/node-skeleton
Last synced: 1 day ago
JSON representation
My skeleton for node projects
- Host: GitHub
- URL: https://github.com/guillaumearm/node-skeleton
- Owner: guillaumearm
- License: mit
- Created: 2022-07-31T06:30:20.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-31T12:47:01.000Z (over 2 years ago)
- Last Synced: 2024-05-30T16:46:47.574Z (5 months ago)
- Language: TypeScript
- Size: 641 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `node-skeleton`
Bootstrap node project quickly
## Get the skeleton
### For Node
```shell
git clone -b master https://github.com/guillaumearm/node-skeleton.git my-node-project
```### For Express
```shell
git clone -b express https://github.com/guillaumearm/node-skeleton.git my-express-project
```### For React
```shell
git clone -b react https://github.com/guillaumearm/node-skeleton.git my-react-project
```### For CLI
```shell
git clone -b cli https://github.com/guillaumearm/node-skeleton.git my-cli-project
```## Rename the project
Change `name` and `description` in `package.json`, then:
```shell
npm install
```## Initialize your git
```shell
rm -rf .git && git init && git add . && git commit -m 'chore: init repository'
```