Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nilshartmann/es6-node-starterkit

My ES6 Node starter environment
https://github.com/nilshartmann/es6-node-starterkit

Last synced: about 8 hours ago
JSON representation

My ES6 Node starter environment

Awesome Lists containing this project

README

        

# My ES6 Node Starter Kit

Install:
```
mkdir project_dir && cd project_dir
wget -qO- -O tmp.zip https://github.com/nilshartmann/es6-node-starterkit/archive/master.zip && unzip tmp.zip && shopt -s dotglob && mv es6-node-starterkit-master/* . && rmdir es6-node-starterkit-master/ && rm tmp.zip

# Replace project name, update Webstorm files and create empty Git repository:
find . -type f -exec sed -i '' s/es6\-node-starterkit/$(basename $PWD)/g {} \;
mv .idea/es6-node-starterkit.iml .idea/$(basename $PWD).iml
git init .

```