文件名称:markdown-blog:使用 Node、Express 和 Handlebars 构建的 Markdown 博客平台
文件大小:116KB
文件格式:ZIP
更新时间:2024-07-22 16:30:37
CSS
#Markdown 博客 这只是一个博客平台,您可以在其中使用 Markdown 撰写帖子。 ##启动并运行 首先,您需要安装所有依赖项。 $ npm install 安装依赖项后,您可以通过键入以下命令来运行应用程序: $ npm start 为什么是主管而不是节点? 使用主管启动应用程序时,您无需在每次代码更改时重新启动服务器。 它会自动完成。 在浏览器中,输入: http://localhost:3000/ ##用法 帖子是用 Markdown 编写的,并托管在条目目录中。 帖子必须根据其发布日期正确放置,因此您必须具有以下内容: 2014/12/25/my-post.markdown 将Markdown文件放置到相应文件夹后,您应该更改根目录中托管的文件entrylist.js 。 此文件包含帖子配置,如降价文件名、标题和日期。 只需根据现有的在数组顶部插入
【文件预览】:
markdown-blog-master
----.gitignore(19B)
----app.js(383B)
----package.json(393B)
----bin()
--------www(626B)
----services()
--------entryservice.js(955B)
--------pagerservice.js(360B)
----assets()
--------js()
--------css()
--------img()
----entrieslist.js(883B)
----views()
--------entry.html(114B)
--------layout.html(864B)
--------not-found.html(264B)
--------partials()
--------home.html(527B)
----utils()
--------pager_utils.js(156B)
----README.md(1KB)
----config()
--------config.yml(41B)
----router()
--------index.js(1KB)
----.editorconfig(66B)
----entries()
--------2015()
--------2014()