tumobi 9d7c044cd2 first commit před 8 roky
..
static 9d7c044cd2 first commit před 8 roky
README.md 9d7c044cd2 first commit před 8 roky
development.js 9d7c044cd2 first commit před 8 roky
production.js 9d7c044cd2 first commit před 8 roky
testing.js 9d7c044cd2 first commit před 8 roky

README.md

application

start server

development

node www/development.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

how to link resource

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;
}