All Projects → seawind8888 → Nobibi

seawind8888 / Nobibi

Licence: mit
一款基于Next.js+mongo的轻量级开源社区(open community by Next.js & mongo)

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Nobibi

Next Graphql Blog
🖊 A Blog including a server and a client. Server is built with Node, Express & a customized GraphQL-yoga server. Client is built with React, Next js & Apollo client.
Stars: ✭ 152 (-27.27%)
Mutual labels:  mongoose, mongodb, nextjs
Blog Service
blog service @nestjs
Stars: ✭ 188 (-10.05%)
Mutual labels:  mongoose, mongodb, koa
Lad
👦 Lad is the best Node.js framework. Made by a former Express TC and Koa team member.
Stars: ✭ 2,112 (+910.53%)
Mutual labels:  mongoose, mongodb, koa
Builderbook
Open source web application to learn JS stack: React, Material-UI, Next.js, Node.js, Express.js, Mongoose, MongoDB database.
Stars: ✭ 3,015 (+1342.58%)
Mutual labels:  mongoose, mongodb, nextjs
Vue Family Bucket Ssr Koa2 Full Stack Development From Meituan
🚀🚀2020最新Vue全家桶+SSR+Koa2全栈开发☁
Stars: ✭ 100 (-52.15%)
Mutual labels:  mongoose, mongodb, koa
Cdfang Spider
📊 成都房协网数据分析,喜欢请点 star!
Stars: ✭ 1,063 (+408.61%)
Mutual labels:  mongoose, koa, antd
Graphql Demo
🎉Koa + GraphQL + Apollo-Server demo
Stars: ✭ 215 (+2.87%)
Mutual labels:  mongoose, mongodb, koa
Koa Vue Fullstack
A lightweight boilerplate for a universal webapp based on koa, mongodb, node, vue, and webpack
Stars: ✭ 126 (-39.71%)
Mutual labels:  mongoose, mongodb, koa
Saas
Build your own SaaS business with SaaS boilerplate. Productive stack: React, Material-UI, Next, MobX, WebSockets, Express, Node, Mongoose, MongoDB. Written with TypeScript.
Stars: ✭ 2,720 (+1201.44%)
Mutual labels:  mongoose, mongodb, nextjs
Thal
Getting started with Puppeteer and Chrome Headless for Web Scraping
Stars: ✭ 2,345 (+1022.01%)
Mutual labels:  mongoose, mongodb
Intro To Graphql
[Course] Introduction to GraphQL
Stars: ✭ 175 (-16.27%)
Mutual labels:  mongoose, mongodb
Mongoose Sequence
Sequence and autoincrement handling for mongoose
Stars: ✭ 178 (-14.83%)
Mutual labels:  mongoose, mongodb
Ecommerce Site Template
A beautiful e-commerce template powered by React, Redux and other modern web tech.
Stars: ✭ 167 (-20.1%)
Mutual labels:  mongoose, mongodb
Express Es6 Starter
Starter project for creating a MVC express server with MongoDB
Stars: ✭ 178 (-14.83%)
Mutual labels:  mongoose, mongodb
Frisky
🍿 Open Source GraphQL API for Online Shows
Stars: ✭ 161 (-22.97%)
Mutual labels:  mongoose, mongodb
Ts Mongoose
Automatically infer TypeScript interfaces from mongoose schemas🙀
Stars: ✭ 188 (-10.05%)
Mutual labels:  mongoose, mongodb
Mongoose Typescript Example
Stars: ✭ 156 (-25.36%)
Mutual labels:  mongoose, mongodb
Node.js
一步一步学习Node.js,带你从零开始学习Node.js!本仓库是自己总结的Node.js学习图文教程,里面有学习案列和源代码(pubdreamcc原创,欢迎转载,欢迎star)
Stars: ✭ 181 (-13.4%)
Mutual labels:  mongoose, mongodb
Focus Budget Manager
Budget Manager application built with Vue.js, Node.js, Express.js and MongoDB
Stars: ✭ 189 (-9.57%)
Mutual labels:  mongoose, mongodb
Tm Crm erp
DEPRECATED
Stars: ✭ 196 (-6.22%)
Mutual labels:  mongoose, mongodb

Nobibi

简体中文 | English

Nobibi 是一款轻量级开源社区,快速搭建属于自己的社区

已更新问 ts 版本,原 js 版本请访问:https://github.com/seawind8888/Nobibi/tree/js

关于 Nobibi

  • Nobibi 是一款轻量级开源社区,包含前后台
  • 前台考虑 SEO 使用 next.js + antd 服务端渲结构
  • 后台系统基于Ant Design Pro(react + dvajs + umijs)搭建开发
  • 后端接口为 koa+moogoose

快速开始

保证已启动 api 项目Nobibi-api

  1. Clone 项目
git clone https://github.com/seawind8888/Nobibi my-project
  1. 安装依赖
cd my-porject
npm install 或 yarn
  1. 运行项目
npm run start

相关项目

  • Nobibi-api - Nobibi 后台接口
  • Nobibi-admin - Nobibi 管理后台
  • Nobibi-taro - Nobibi 小程序(待开发)
  • Nobibi-nuxt - (待开发)

示例项目

请移步:http://47.244.103.124:3006/

效果演示

  • 前台 image image image
  • 管理后台 image

项目部署

保证已启动 api 项目Nobibi-api

  1. 修改.env 文件下配置
BASE_URL=http://yourapihost:port // 你的api的host地址
  1. 将项目除去 node_modules 压缩,上传到服务器
windows&mac有异同,请自行百度或科学Goo
  1. 在服务器项目目录下运行
npm run build && npm run pm2

技术选型

image

目录结构

ant-cms-admin
├── api/
 ├── index.js/         # 接口部分
├── assets/             # less目录
├── components/         # 组件目录
├── constatns/
 ├── ActionTypes.js/   # redux-sage action-type
 ├── ConstTypes.js/    # next 页面title 配置
 └── CustomTheme.js    # 主题样式配置
├── pages               # 主页面
 ├── _app.js/          # App根组件自定义
 ├── _document.js/     # document组件自定义
├── redux               # redux目录
├── static              # 静态资源引用目录
├── .editorconfig       # 编辑器配置
├── .eslintrc           # ESlint配置
├── .gitignore          # Git忽略文件配置
├── .prettierignore     # Prettier忽略文件配置
├── .prettierrc         # Prettier配置
├── next.config.js      # next配置
├── pm2.config.js       # pm2配置
├── server              # next服务配置

功能模块

  • [x] 注册
  • [x] 登录(持久化)
  • [x] 修改密码
  • [x] 修改资料
  • [x] 发布主题
  • [x] 评论主题
  • [x] 频道切换
  • [x] 点赞
  • [x] 响应式布局
  • [x] 收藏
  • [x] 分享(待开发)
  • [x] 积分(待开发)
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].