Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cliberal/burin
⚒generate files from nunjucks templates
https://github.com/cliberal/burin
auto cli generator nunjucks
Last synced: 10 days ago
JSON representation
⚒generate files from nunjucks templates
- Host: GitHub
- URL: https://github.com/cliberal/burin
- Owner: cliberal
- License: mit
- Created: 2018-01-18T14:06:32.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-13T15:56:32.000Z (over 6 years ago)
- Last Synced: 2024-10-07T09:16:50.752Z (about 1 month ago)
- Topics: auto, cli, generator, nunjucks
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Burin
> hands-free cli tool
## Usage
```
npm install burin -g
```
cd to your project and create .burin directory then```
burin MODULE_NAME
```for example `burin Production`, the generated files are determined by your templates in `.burin`
there's an example `.burin` fold
```
.
├── context.js
└── template
├── containers
│ └── MODULE_NAME
│ ├── index.js.njk
│ └── style
│ └── index.scss.njk
└── redux
└── MODULE_NAME
└── index.js.njk
```
note that all templates end with `.njk`## TODO
- [ ] add eslint
- [ ] add husky
- [ ] need tests