Skip to content
rendfall edited this page Feb 19, 2016 · 3 revisions

About

EcmaScript 2015 is still not fully supported, so we need to use transpilers. To avoid Don't Repeat Yourself rule, everytime you need to create new project you can clone this repo and focus on coding.

File Structure

├── src/
│   ├── app.js
├── .gitignore
├── README.md
├── index.html
├── package.json
├── webpack.config.js

Speed up your work

Do you want test something quickly? Or maybe you want to start new interesting project? Don't build an applications from scratch! Save your time by making useful alias using this seed.

in your .bashrc file add this line

new-project = git clone [email protected]:rendfall/new-project.git $1

or if you are Windows user - just type in cmd.exe

doskey new-project = git clone git@github.com:rendfall/new-project.git $1

Now you can use command

new-project path/to/your/new-project

Happy coding!

License

The WTFPL License @ 2016

Clone this wiki locally