gatsby starter reasonml
1.0.0
此 Gatsby 入门教程的灵感来自于默认入门博客。除此之外,它支持 ReasonML 及其强类型、功能性的优点。
安装 Gatsby CLI。
Gatsby CLI 可帮助您使用 Gatsby starters 创建新站点(就像这个!)
# install the Gatsby CLI globally
npm install -g gatsby-cli
创建盖茨比网站。
使用 Gatsby CLI 创建一个新站点,指定默认启动器。◊
# create a new Gatsby site using the ReasonML starter
gatsby new my-super-neat-reasonml-site https://github.com/iwilsonq/gatsby-starter-reasonml
开始开发。
导航到新站点的目录并启动它。
cd my-super-neat-reasonml-site/
npm run dev:bsb
npm run dev:gatsby
打开源代码并开始编辑!
您的网站现在正在http://localhost:8000
运行!
_注意:您还会看到第二个链接: http://localhost:8000/___graphql
。您可以使用此工具来尝试查询数据。在 Gatsby 教程中了解有关使用此工具的更多信息。_
在您选择的代码编辑器中打开my-super-neat-reasonml-site
目录(或您为其指定的任何合理名称)并编辑src/pages/index.js
。保存您的更改,浏览器将实时更新!