mkdir app
cd app
echo document.write("It works"); > runoob1.js
dir
type runoob1.js
echo ... > index.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title></title> <link rel="stylesheet" href=""> </head> <body> <script type="text/javascript" src="bundle.js" charset="utf-8"></script> </body> </html>
type index.html
cnpm install webpack
webpack runoob1.js bundle.js
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1899006
原文地址:http://suyanzhu.blog.51cto.com/8050189/1899006