Node.js 论坛系统 NodeBB

本小妞迷上赌 提交于 2019-11-29 08:59:32

NodeBB是Design Create Play开发的一款使用Node.js构建的论坛系统,使用redis或mongoDB数据库,采用web socket技术实现。支持响应式布局,兼容IE8,将论坛的体验带向一个新的高度。(国外的论坛系统都相当纯粹,并不会像Discuz、phpwind那样提供各种建站所需模块)

github:https://github.com/NodeBB/NodeBB

官网:https://nodebb.org

Installing NodeBB

Install redis with homebrew:

brew install redis

Start redis server, in your terminal enter:

redis-server

Clone NodeBB repo:

git clone -b v1.10.x https://github.com/NodeBB/NodeBB.git

Enter directory:

cd NodeBB

Run interactive installation:

./nodebb setup

You may leave all of the options as default, except "Which database to use (mongo)", which you should answer with "redis"

And you're done! After the installation, run

./nodebb start

You can visit your forum at http://localhost:4567/

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!