Docsify + Serverless Framework怎么快速创建个人博客系统
如何使用Docsify + Serverless Framework快速创建个人博客系统
使用Docsify + Serverless Framework搭建个人博客系统非常简单,只需要几分钟就能完成。首先,使用npm安装docsify-cli:
npm i docsify-cli -g
然后,使用docsify init命令初始化一个博客目录:
docsify init ./my-blog
接下来,使用Serverless Framework创建一个云函数:
serverless create --template aws-nodejs --path my-blog-function
在my-blog-function目录中,创建一个index.js文件,内容如下:
'use strict'; const docsifyServer = require('docsify-server'); module.exports.handler = (event, context, callback) => { docsifyServer(event, context, callback); };
最后,使用serverless deploy命令部署云函数:
serverless deploy
部署完成后,访问http://your-domain/my-blog即可查看博客内容。
相关文章