nodejs开启服务器

1.新建文件夹demo在该目录下执行以下命令:npm initnpm i express创建server.js(服务器主文件) 2.向sever.js文件写入内容1234567891011121314151617const express = require('express')const app = express()app.get('/person'...

发布于 nodejs服务器

hexo发文

1、 新建一篇文章 123在hexo博客目录下,进入Git Bash命令窗口中,输入以下命令:hexo new "在这里"在博客目录下的/source/_posts/ 文件夹下,可以看到已经生成了标题为(在这里.md)的博客文件 2、给文章添加分类和标签 1234567在(在这里.md)文件中设置tags和categories属性:title: 在这里date: 2018...

发布于 hexo发表文章

Hello World

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. Qu...

发布于 
44