创建新项目
无论你是否有现有的代码存储库/目录,还是你正在启动一个全新项目,添加 Yarn 的方式始终相同。
在你要添加 Yarn 的目录中,在你的终端/控制台中运行以下命令
yarn init
这将打开一个交互式表单,用于创建新 Yarn 项目,其中包含以下问题
name (your-project):
version (1.0.0):
description:
entry point (index.js):
git repository:
author:
license (MIT):
你可以为每个问题输入答案,也可以按 Enter/Return 来使用默认值或将其留空。
package.json
现在,你应该有一个看起来与此类似的 package.json
{
"name": "my-new-project",
"version": "1.0.0",
"description": "My New Project description.",
"main": "index.js",
"repository": {
"url": "https://example.com/your-username/my-new-project",
"type": "git"
},
"author": "Your Name <[email protected]>",
"license": "MIT"
}
当你运行 yarn init
时,它所做的就是创建此文件。后台没有任何内容发生。你可以随时随心所欲地编辑此文件。
你的 package.json
用于存储有关你的项目的信息。其中包括你的项目名称、维护人员、源代码存储的位置,但最重要的是为项目安装哪些依赖关系。