Javascript

浏览器端js依赖导包(Node-style require)

本文主要是介绍浏览器端js依赖导包(Node-style require),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

require() does not exist in the browser/client-side JavaScript.

have to make some choices about your client-side JavaScript script management.

You have three options:

  1. Use the <script> tag.
  2. Use a CommonJS implementation. It has synchronous dependencies like Node.js
  3. Use an asynchronous module definition (AMD) implementation.

CommonJS client side-implementations include (most of them require a build step before you deploy):

  1. Browserify - You can use most Node.js modules in the browser. This is my personal favorite.
  2. Webpack - Does everything (bundles JavaScript code, CSS, etc.). It was made popular by the surge of React, but it is notorious for its difficult learning curve.

缺点:You have to compile it, then deploy it

which means it is less great for fast development

 

AMD implementations include:

  1. RequireJS - Very popular amongst client-side JavaScript developers. It is not my taste because of its asynchronous nature.

 

这篇关于浏览器端js依赖导包(Node-style require)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!