nodejs有没有类似java的maven打包成为war的工具啊??nodejs打包之后是什么?不懂。。新手求教,都有哪些方法?
阿神2017-04-17 12:07:37
For packaging and deployment, you can look at gulp or grunt. Everything you can think of can be done (compression, obfuscation, version replacement, merging...)
天蓬老师2017-04-17 12:07:37
To put it simply, no. You can develop a packaging tool yourself, I’m optimistic about you
Except for some that can be published as npm packages, when express applications are generally published, package.json is retained, node_modules is removed, and then packaged and given away.
PHP中文网2017-04-17 12:07:37
You can try webpack, it can be used on both client and server, it is very powerful!