Next.js中文说明

Next.js 是一个轻量级的 React 服务端渲染应用框架。

可访问 nextjs.org/learn 开始学习 Next.js.

怎么使用

安装

在项目文件夹中运行:

1
npm install --save next react react-dom

将下面脚本添加到 package.json 中:

1
2
3
4
5
6
7
{
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
}
}
阅读更多

从Eclipse到IDEA

项目导入

  1. 首先 rar 打包备份当前的代码文件夹,以备不时之需。

  2. 在打包过程中可以安装 idea,idea 的安装是非常简单的,一路 next,修改下安装目录,是否关联文件打开方式,是否桌面创建 64 位快捷方式等。

阅读更多

Hello World

Netlify Status

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment