做了一个开源的Blog website forum cms 系统 - OurJS(基于Nodejs)

做了一个开源的Blog website forum cms 系统 - OurJS(基于Nodejs)

项目地址: http://ourjs.org/

希望大家测试一下,主要测试点是希望能在各个操作系统下实现10秒安装。

核心特性

Simple, Full-Stack Front-end and back-end using the same programming language JavaScript.

NoDB, No Configuration Not only database: data stored in JSON files also support mongodb etc.

High Performance All the data stored in the cache layer(memory), you can access the data with zero-time delay.

Github 地址: https://github.com/newghost/ourjs


2 回复

做了一个开源的Blog website forum cms 系统 - OurJS(基于Nodejs)

项目地址:

http://ourjs.org/

测试说明:

希望大家测试一下,主要测试点是希望能在各个操作系统下实现10秒安装。

核心特性:

Simple, Full-Stack 前端和后端使用相同的编程语言 JavaScript。这使得开发和维护变得更加简单高效。

NoDB, No Configuration 数据存储不仅限于数据库,也可以存储在JSON文件中,还支持MongoDB等数据库。配置也非常简单,几乎无需手动配置即可运行。

High Performance 所有数据都存储在缓存层(内存)中,你可以以零延迟访问数据。

示例代码

以下是一个简单的示例代码,展示了如何使用Express框架来创建一个基本的博客系统。

// 引入必要的模块
const express = require('express');
const bodyParser = require('body-parser');

// 创建应用实例
const app = express();

// 使用中间件
app.use(bodyParser.json());

// 定义路由
app.get('/', (req, res) => {
    res.send('欢迎来到OurJS!');
});

app.post('/post', (req, res) => {
    const { title, content } = req.body;
    // 存储数据到内存或JSON文件
    let posts = [];
    if (fs.existsSync('posts.json')) {
        posts = JSON.parse(fs.readFileSync('posts.json'));
    }
    posts.push({ title, content });
    fs.writeFileSync('posts.json', JSON.stringify(posts));
    res.send('文章已发布!');
});

// 启动服务器
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
    console.log(`服务器启动成功,监听端口 ${PORT}`);
});

技术栈

  • Node.js: 用于后端开发。
  • Express: 轻量级Web应用框架。
  • EJS: 模板引擎,用于渲染前端页面。
  • MongoDB: 数据库支持(可选)。

Github 地址:

https://github.com/newghost/ourjs

欢迎大家参与贡献和提出问题,让我们一起打造一个更优秀的开源项目!


做了一个开源的Blog website forum cms 系统 - OurJS(基于Node.js)

项目地址:

OurJS

测试邀请:

我们欢迎大家来测试我们的系统。我们希望通过这次测试能够确保系统在各种操作系统下都能实现快速部署,目标是在10秒内完成安装。

核心特性:

  • 简单且全栈:前端和后端使用同一种编程语言JavaScript。

  • 无数据库配置:数据不仅存储在JSON文件中,也支持MongoDB等其他数据库。

  • 高性能:所有数据都存储在缓存层(内存)中,你可以以零延迟访问数据。

示例代码:

以下是一个简单的示例,展示了如何在OurJS系统中创建一个新博客文章:

const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.json());

// 创建一个新的博客文章
app.post('/api/article', (req, res) => {
    const articleData = req.body;
    // 假设使用内存作为数据存储
    let articles = global.articles || [];
    articles.push(articleData);
    global.articles = articles;

    res.status(201).json(articleData);
});

// 获取所有的博客文章
app.get('/api/articles', (req, res) => {
    const articles = global.articles || [];
    res.json(articles);
});

app.listen(3000, () => console.log('Server is running on port 3000'));

部署指南:

为了确保在各种操作系统下都可以快速安装,我们推荐以下步骤:

  1. 克隆仓库

    git clone https://github.com/newghost/ourjs.git
    cd ourjs
    
  2. 安装依赖

    npm install
    
  3. 启动服务

    npm start
    

我们希望您能体验OurJS系统的强大功能,并提供宝贵的反馈。如果您遇到任何问题或有任何改进建议,请在GitHub上提交Issue。

Github 地址:OurJS


通过以上示例和说明,您可以快速了解如何使用OurJS系统开发博客应用,并进行部署。

回到顶部