摘要:
Learn React & Webpack by building the Hacker News front page from https://github.com/theJian/build-a-hn-front-page 1.安装nodejs 2.安装webpack 3.安装webpack- 阅读全文
摘要:
var jsonData = {a:1,b:2}; function obj2string(o) { var r = []; if (typeof o == "string") { return "\"" + o.replace(/([\'\"\\])/g, "\\$1").replace(/(\n)/g, "\\n").replace(/(\r)/g, "\\... 阅读全文
摘要:
var EventEmitter = require("events").EventEmitter var event = new EventEmitter() event.on("some_event",function(){ console.log("I'm a event") }) setTimeout(function(){ event.emit("some_event"... 阅读全文