https://www.npmjs.com/package/jquery_wechat_sdkhtml
安裝
$ npm install jquery_wechat_sdk
使用
Browser
Script tag
<script src="jquery_wechat_sdk/index.js"></script>
Browserify/Webpack
var _w = require('jquery_wechat_sdk');
AMD (Asynchronous Module Definition)
define(["jquery_wechat_sdk"], function(_w) {
});
Babel
Babel是下一代JavaScript編譯器。其中一個特性是如今可使用ES6/ES2015模塊,儘管瀏覽器尚未本地支持這個特性。node
import _w from "jquery_wechat_sdk";
Node
jquery_wechat_sdk
運行在node
端,須要提供一個帶有document
的window
,由於沒有這樣的document
在node
中存在,因此可使用jsdom
,這樣能夠達到測試的目的jquery
npm install jquery_wechat_sdk
require("jsdom").env("", function(err, window) {
if (err) {
console.error(err);
return;
}
var _w = require("jquery_wechat_sdk")(window);
});
API
jquery_wechat_sdk APIwebpack
https://www.npmjs.com/package/wechat-sdk-genweb
## 安裝npm
$ sudo npm install -g wechat-sdk-gen
$ npm install -g wechat-sdk-gen
## 使用
Usage: wsg [options]
Options:
-V, --version output the version number
-w, --wechatInfo [appid] [appsecrect] [timestamp] [nonceStr] [url] get access_token and signature support
-v, --version output the version number
-h, --help
博客園怎麼還不支持md