All Projects → songquanpeng → blog

songquanpeng / blog

Licence: MIT license
基于 Node.js 的个人博客系统. Node.js based blog system.

Programming Languages

javascript
184084 projects - #8 most used programming language
EJS
674 projects
CSS
56736 projects

Projects that are alternatives of or similar to blog

frontie
Frontie is a front-end boilerplate. Gulp | Twig.js | Sass | Autoprefixer | Browsersync | Bootstrap 4 Grid System & Responsive Breakpoints
Stars: ✭ 28 (-30%)
Mutual labels:  bootstrap4
ace-documentation
A free documentation theme for Hugo, powered by Bootstrap 4. Repsonsive, search, code highlighting and more.
Stars: ✭ 91 (+127.5%)
Mutual labels:  bootstrap4
mdb4-react-ui-kit
React Bootstrap with Material Design - Powerful and free UI KIT
Stars: ✭ 74 (+85%)
Mutual labels:  bootstrap4
bootstrap-4-boilerplate
Basic Bootstrap 4 Starter Template
Stars: ✭ 50 (+25%)
Mutual labels:  bootstrap4
food-order-app
Simple Food Ordering Website (NodeJS, ExpressJS, MongoDB, Bootstrap) with auto deployment
Stars: ✭ 43 (+7.5%)
Mutual labels:  bootstrap4
one-bootstrap-template
Flatlogic One - Free Bootstrap Template and Theme
Stars: ✭ 24 (-40%)
Mutual labels:  bootstrap4
smaller-sites
Smaller Sites is a small BUT Powerful, free and easy to use drag and drop builder for blogs, websites or e-commerce stores. Designed for everyone Developers and non Developers. You can use it to design your next website. The goal is to create something like webflow
Stars: ✭ 27 (-32.5%)
Mutual labels:  bootstrap4
Responsive-Mikrotik-Template
Responsive Mikrotik Template Base on Bootstrap 4
Stars: ✭ 35 (-12.5%)
Mutual labels:  bootstrap4
wp-bootstrap4-sass
A clean slate Wordpress theme template with Bootstrap(4) Sass.
Stars: ✭ 28 (-30%)
Mutual labels:  bootstrap4
wp-bootstrap4-navwalker
A custom WordPress nav walker class to fully implement the Twitter Bootstrap 4.x navigation style in a custom theme using the WordPress built in menu manager
Stars: ✭ 40 (+0%)
Mutual labels:  bootstrap4
Codeigniter-4-CRUD-generator
ADEL CCG is an easy open-source intuitive web app to create AdminLTE4 -Bootstrap 5- dashboards with CRUD operations in php.
Stars: ✭ 87 (+117.5%)
Mutual labels:  bootstrap4
react-notification-alert
React bootstrap 4 notification alert
Stars: ✭ 34 (-15%)
Mutual labels:  bootstrap4
angular5-starter
⭐ An Angular5 Starter Kit :: Router, HttpClient, Forms, Services, Dev/Prod, HMR, Async/Lazy Routes and a very good structure for large applications by @naologic
Stars: ✭ 54 (+35%)
Mutual labels:  bootstrap4
classmanager-student-teacher-portal
A Student-Teacher Portal built using HTML, CSS, Python and Django
Stars: ✭ 155 (+287.5%)
Mutual labels:  bootstrap4
luya-kickstarter-bootstrap4
LUYA boilerplate to kickstart projects with Bootstrap 4.
Stars: ✭ 13 (-67.5%)
Mutual labels:  bootstrap4
CUMS DBMS
🏰 A College Management Site (DBMS) using Node and Mysql.
Stars: ✭ 28 (-30%)
Mutual labels:  bootstrap4
bootstrap-v4-rtl
Right to Left version of Bootstrap v4.x
Stars: ✭ 101 (+152.5%)
Mutual labels:  bootstrap4
ses-email-client
Simple, serverless client for AWS SES. With this, you can send/read emails received by SES into S3 without purchasing AWS Workmail. If you only use SES for email marketing, you can also see and preview your SES templates in the browser
Stars: ✭ 21 (-47.5%)
Mutual labels:  bulma-css
bootpack
Create multi-page websites using bootstrap for development and webpack for task running.
Stars: ✭ 30 (-25%)
Mutual labels:  bootstrap4
OpenAdmin
OpenAdmin - Free Premium Admin Dashboard Theme
Stars: ✭ 87 (+117.5%)
Mutual labels:  bootstrap4

中文 | English

个人博客系统

基于 Node.js 的个人博客系统

license release release docker pull

截图展示 · 在线演示 · 部署教程 · 意见反馈

描述

技术栈:Express.js(服务端)+ Sequelize(ORM) + React(后台)+ Ant Design(后台 UI 库)

特点:

  1. 支持多种主题。
  2. 支持多种页面类型,文章页面、HTML 页面、链接页面等等。
  3. 无需配置数据库,开箱即用(如果你不想用 SQLite,请修改 config.js 配置文件)。
  4. 内置 ACE 代码编辑器,附带多种代码主题(包括 Solarized Light)。
  5. 支持通过 Docker 部署,一行命令即可上线部署,详见此处

主题

  1. Bulma:Bulma CSS 风格主题,内置的默认主题。
  2. Bootstrap:Bootstrap 风格主题(推荐使用)。
  3. W3:W3.css 风格主题
  4. V2EX: V2EX 风格主题
  5. Next: Hexo Next 风格主题
  6. Bootstrap5: 借鉴自 CodeLunatic/halo-theme-simple-bootstrapBootstrap5 风格主题

注意:

  1. 更改主题的步骤:打开后台管理系统中的设置页面 -> 自定义设置 -> 找到 THEME -> 修改后点击保存设置,记得浏览器 Ctrl + F5 刷新缓存。
    • 可选的值有:bulmabootstrapbootstrap5w3next 以及 v2ex
  2. 由于精力有限,部分主题可能由于未能及时随项目更新导致存在问题。

演示

在线演示

  1. JustSong 的个人博客 (可能并非最新版本).
  2. Render App (后台管理系统地址 默认用户名 admin 以及密码 123456)

截图展示

桌面端首页 后台管理页面文章列表页面 编辑器页面

部署

通过 Docker 部署

执行:docker run --restart=always -d -p 3000:3000 -v /home/ubuntu/data/blog:/app/data -e TZ=Asia/Shanghai justsong/blog

开放的端口号为 3000,之后用 Nginx 配置域名,反代以及 SSL 证书即可。

数据将会保存在宿主机的 /home/ubuntu/data/blog 目录(数据库文件和上传的文件)。

如果想在网站根目录上传文件,则在该目录下新建一个 index 文件夹,里面可以放置 favicon.ico, robots.txt 等文件,具体参见 data/index 目录下的内容。

更新博客版本的命令:docker run --rm -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower -cR

通过源码部署

git clone https://github.com/songquanpeng/blog.git
cd blog
# 获取主题
git submodule init
# 更新主题
git submodule update
# 安装依赖
npm install
# 编译后台管理系统
npm run build  # Windows 用户请运行 `npm run build2`
# 启动服务
npm start
# 推荐使用 pm2 进行启动
# 1. 安装 pm2
npm i -g pm2
# 2. 使用 pm2 启动服务
pm2 start ./app.js --name blog
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].