Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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'
```