starting a new project:(finance project for p2p -- like lending club, or prosper ) ,we considering a js framework framework to help fast developing . most important part for us is: support mongodb rest is well intergrated , and support a standard res…
Node.js is a platform for building fast and scalable server applications using JavaScript. Node.js is the runtime and NPM is the Package Manager for Node.js modules. VS Code has support for the JavaScript and TypeScript languages out-of-the-box as we…
Object-Oriented Code 1. var Person = function (name) { this.name = name; }; Person.prototype.say = function (words) { alert(this.name + ' says "' + words + '"'); }; var tom = new Person("tom"); tom.say("Hello"); 2.Inheritance…
本文转自:https://code.visualstudio.com/docs/nodejs/nodejs-tutorial Node.js tutorial in Visual Studio Code Node.js is a platform for building fast and scalable server applications using JavaScript. Node.js is the runtime and NPM is the Package Manager for…