2016-06-02 17:36:54 +08:00
..
2016-06-02 17:36:54 +08:00
2016-01-15 15:32:37 +08:00
2016-06-02 17:36:54 +08:00
2016-06-02 17:36:54 +08:00
2016-01-11 11:10:09 +08:00
2016-01-15 15:32:37 +08:00

application

start server

development

node www/index.js

testing

node www/testing.js

production

node www/production.js 

or use pm2 to manage node:

pm2 start www/production.js

compile es6 code

npm run compile

in template file


<script src="/static/js/a.js"></script>

<img src="/static/img/a.png" alt="">

<link rel="stylesheet" href="/static/css/a.js">

link image in css

.a{
    background: url(../img/a.png) no-repeat;
}