@terun/cli
v2.0.0-alpha.6
Published
<div align="center"> <img src="packages/terun-doc/docs/.vuepress/public/logo.svg" height="150"> <h1>Terun</h1> </div>
Downloads
3
Readme
Terun is a template generator to any purpose. Create code from template files and reduces the difficult to increase the project with big architecture.
yarn global @terun/cli
Getting start
Create your config file:
module.exports = {
commands: {
example: {
args:["EntityName"],
transports: [
{
from: 'from.terun',
to: 'to.html'
}
]
}
}
};
Define your template independente of language:
class {{EntityName | capitalize}}Entity{
constructor(){}
}
Run on terminal terun transport example
:
class PersonEntity{
constructor(){}
}
Documentation
Here: https://terun.netlify.com/