This tutorial has been updated to include additional steps for linking to GitHub pages.
$ npm install -g hexo-cli
This tutorial has been updated to include additional steps for linking to GitHub pages.
$ npm install -g hexo-cli
| const http = require('http') | |
| http.createServer(function (req, res) { | |
| res.write('Hello World') | |
| res.end() | |
| }).listen(3000, function() { | |
| console.log("Server start at port 3000") | |
| }) |