Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
leiyun fa0344fb0c 初始提交 vor 10 Monaten
..
README.md 初始提交 vor 10 Monaten
development.js 初始提交 vor 10 Monaten
live.js 初始提交 vor 10 Monaten
production.js 初始提交 vor 10 Monaten
testing.js 初始提交 vor 10 Monaten

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

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