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

https://github.com/eldoy/libinit

Template for new NodeJS libs
https://github.com/eldoy/libinit

Last synced: 4 months ago
JSON representation

Template for new NodeJS libs

Awesome Lists containing this project

README

          

# Libinit

Template for new NodeJS apps.

### Usage

Add this function to your `.zshrc` or `.bashrc`
```sh
function template {
git clone https://github.com/eldoy/libinit.git $1 && rm -rf $1/.git && cd $1 && git init
}
```

Then use like this:
```sh
template name
```

MIT Licensed. Enjoy!