现代 JavaScript 应用开发入门指南
1. 项目初始化与应用服务器安装
在项目目录中,我们可以看到一个 package.json 文件,其内容如下:
{
"name": "thaumoctopus-mimicus",
"version": "0.0.0",
"description": "Isomorphic JavaScript application example",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/isomorphic-javascript-book/thaumoctopus-mimicus.git"
},
"keywords": [
"isomorphic",
"javascript"
],
"author": "Jason Strimpel",
"license": "MIT",
"bugs": {
"url": "https://github.com/isomorphic-javascript-book/thaumoctopus-mimicus/issues"
},
"homepage": "https://github.com/isomorphic-javascript-book/thaumoctopus-m
现代JavaScript开发入门
超级会员免费看
订阅专栏 解锁全文
1472

被折叠的 条评论
为什么被折叠?



