yarn 管理nextjs 项目

Posted rongfengliang-荣锋亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yarn 管理nextjs 项目相关的知识,希望对你有一定的参考价值。

 预备环境
nodejs 
npm
1. yarn 安装
npm  install -g yarn 
2. nextjs 项目初始化
yarn add  next react  react-dom
3. 配置nextjs 项目
"scripts":{
    "dev": "next",
    "build": "next build",
    "start": "next start"
  }
4. 创建简单项目
mkdir pages
cd pages

touch index.js 
// content 
export default ()=> <div>this is the index page </div>

// run 

yarm run dev

// ok  就是这么简单
5. 参考资料
https://yarnpkg.com/zh-Hans/docs/getting-started

以上是关于yarn 管理nextjs 项目的主要内容,如果未能解决你的问题,请参考以下文章

Yarn: 一个新的JavaScript模块管理器

Yarn管理项目依赖包

NextJS 卡在编译

带有 Nextjs 和 React-native 的 monorepo 中的 Nohoist:无法解决反应

译丨Yarn - Javascript 新一代套件管理

lerna+yarn workspace+monorepo项目的最佳实践