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
- Host: GitHub
- URL: https://github.com/eldoy/libinit
- Owner: eldoy
- License: mit
- Created: 2021-02-16T00:51:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-17T04:03:11.000Z (over 5 years ago)
- Last Synced: 2025-02-22T19:25:03.409Z (over 1 year ago)
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!