All Projects → Yancey-Blog → blog-be-next

Yancey-Blog / blog-be-next

Licence: MIT license
The back-end platform for Yancey blog.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to blog-be-next

game-store-monorepo-app
A full-stack web app built with NestJS and ReactJS that helps you find and discover over 500,000+ video games on your device. Powered by RAWG API.
Stars: ✭ 106 (+221.21%)
Mutual labels:  apollographql, nestjs
nestjs-graphql-gateway
Apollo Federation support for NextJS GraphQL module. Note: There is support for federation in the official package now so this project is deprecated
Stars: ✭ 13 (-60.61%)
Mutual labels:  apollographql, nestjs
Graphql
GraphQL (TypeScript) module for Nest framework (node.js) 🍷
Stars: ✭ 697 (+2012.12%)
Mutual labels:  apollographql, nestjs
jest-gql
✅🚀GraphQL based tests for Jest and Apollo
Stars: ✭ 33 (+0%)
Mutual labels:  apollographql
azure-serverless-deprecated
[Deprecated] Azure Serverless module for Nest framework (node.js) 🌩
Stars: ✭ 44 (+33.33%)
Mutual labels:  nestjs
GraphQL-Android
A project for showing use of apollo-android for consuming github graphQL API
Stars: ✭ 51 (+54.55%)
Mutual labels:  apollographql
starter-reactnative-nestjs-mysql
Starter mobile ReactNative NestJS MySQL with continuous integration and AWS deployment
Stars: ✭ 16 (-51.52%)
Mutual labels:  nestjs
nestjs-modules
NestJS modules
Stars: ✭ 26 (-21.21%)
Mutual labels:  nestjs
matnbaz
📚 The source-code for matnbaz.net. A monorepo containing the back-end (NestJS/Prisma/Apollo), front-end (Next.js/Apollo) and some tooling.
Stars: ✭ 481 (+1357.58%)
Mutual labels:  nestjs
nestjs-extensions
[WIP] A bunch of useful and opinionated filters, modules, pipes... to use with Nest framework. 😻
Stars: ✭ 43 (+30.3%)
Mutual labels:  nestjs
unnue-nuxt
开媛笔记,基于nuxt ssr首屏服务器端渲染 ⚡。用于分享、记录、交流和学习,希望可以帮助到小伙伴们。同时网站在永久更新,备好鸡血,一起来战 Ooh aah!
Stars: ✭ 98 (+196.97%)
Mutual labels:  nestjs
mpcast-minapp-uni
播(客)课小程序
Stars: ✭ 14 (-57.58%)
Mutual labels:  nestjs
azure-func-http
Azure Functions HTTP adapter for Nest framework (node.js) 🌥
Stars: ✭ 121 (+266.67%)
Mutual labels:  nestjs
nestjs-ioredis
IORedis module for Nest
Stars: ✭ 21 (-36.36%)
Mutual labels:  nestjs
nestjs-microservice-boilerplate
Boilerplate for a TCP Microservice in NestJS with TypeORM and tests
Stars: ✭ 45 (+36.36%)
Mutual labels:  nestjs
courses.nestjs.com
Official NestJS Courses website https://courses.nestjs.com 🏡
Stars: ✭ 65 (+96.97%)
Mutual labels:  nestjs
BUA-FE
本科毕设,搭建一套小而全面的校园外卖系统。主要使用wei-xin-mini + TypeScript + nest.js + typeORM + rabbitmq技术栈。
Stars: ✭ 20 (-39.39%)
Mutual labels:  nestjs
nest-xray
Distributed tracing for Nestjs with AWS X-Ray as the backend. Instrument incoming and outgoing HTTP requests
Stars: ✭ 50 (+51.52%)
Mutual labels:  nestjs
nuxtjs-nestjs-starter
Starter project for nuxtjs and nestjs all in one integrated.
Stars: ✭ 56 (+69.7%)
Mutual labels:  nestjs
graphql-utils
Utilities and helpers to make working with GraphQL.js based APIs simpler.
Stars: ✭ 42 (+27.27%)
Mutual labels:  nestjs

Blog BE Next

The backend platform for Yancey Official Blog with Node.js, NestJS, MongoDB, GraphQL, JWT and more...

This library is part of the BEG (Blog Environment Group) ecosystem 📖

Build Status Codacy Badge codecov FOSSA Status

License: MIT Code Style Version PRs Welcome Commitizen friendly

Gitter Average time to resolve an issue Percentage of issues still open

⭐️ Found it cool? Want more updates? Show your support by giving a ⭐️


Menu

Available Scripts

In the project directory, you can run:

yarn build

Builds the app for production to the dist folder. This script will delete the old dist folder before build.

yarn watch

Runs the app in the development mode. Open http://localhost:3002 to view it in the browser. The page will reload if you make edits. You will also see any lint errors in the console.

yarn document

Via compodoc to generate an awesome document for this app.

yarn test

Runs Jest via yarn test.

yarn commit

An optional way to use git cz if you don't want to install commitizen globally.

⇧ back to top

Contributing

The main purpose of this repository is to continue to evolve BEG (Blog Environment Group), making it faster and easier to use. Development of Blog BE Next happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving Blog BE Next.

Code of Conduct

BEG has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Blog BE Next.

Good Issues

Please make sure to read the Issue Reporting Checklist before opening an issue. Issues not conforming to the guidelines may be closed immediately.

Commitizen

This app follows the Angular Team's Commit Message Guidelines, your commit will be checked by commitlint, please use git cz instead of git commit. For this reason, you should install commitizen globally or use yarn commit instead.

Env Files

Creating production.env, development.env and test.env to save specified environment variables. Common parameters cound be filled in .env. Both DATABASE_USER and DATABASE_PWD are optional parameters in development.env and test.env file. Furthermore, NEED_SIMULATE_NETWORK_THROTTLE is only working on the development environment.

NODE_ENV=<YOUR_NODE_ENV>
APP_PORT=<YOUR_APP_PORT>
DATABASE_HOST=<YOUR_DATABASE_HOST>
DATABASE_PORT=<YOUR_DATABASE_PORT>
DATABASE_COLLECTION=<YOUR_DATABASE_COLLECTION>
# `DATABASE_USER` and `DATABASE_PWD` are optional parameters in
# `development.env` and `test.env` file
DATABASE_USER=<YOUR_DATABASE_USER>
DATABASE_PWD=<YOUR_DATABASE_PWD>
BANDWAGON_SECRET_KEY=<YOUR_BANDWAGON_SECRET_KEY>
BANDWAGON_SERVER_ID=<YOUR_BANDWAGON_SERVER_ID>
IP_STACK_ACCESS_KEY=<YOUR_IP_STACK_ACCESS_KEY>
GOOGLE_RECAPTCHA_KEY=<YOUR_GOOGLE_RECAPTCHA_KEY>
JWT_SECRET_KEY=<YOUR_JWT_SECRET_KEY>
JWT_EXPIRES_TIME=<YOUR_JWT_EXPIRES_TIME>
# Only works on the development environment.
NEED_SIMULATE_NETWORK_THROTTLE=<BOOLEAN>

E2E Testing

We use e2e testing for every module and test them at CI stage, you must write related test cases before PR.

⇧ back to top

Changelogs

The following are prehistoric changelogs on building infrastructure for this app. Just as a memorial. See the real detailed changes for each release are documented in the CHANGELOG.

  • 2019-12-03 Integrates e2e testing.

  • 2019-11-26 Integrates JWT.

  • 2019-11-07 Integrates dotenv.

  • 2019-11-04 Integrates GraphQL.

  • 2019-10-20 Integrates MongoDB and write the first RESTful CRUD.

  • 2019-10-12 Initital repo.

⇧ back to top

TODOs

  • [ ] Full text search for post (We are using Algolia Search)

  • Fine-grained type verification system optimization

  • Supports forget password

  • Supports role-based permission system

  • Supports two factor authentication (Both of TOTP and SMS)

  • Dockerize

⇧ back to top

License

Blog BE Next is under the MIT licensed. See the LICENSE file for the full license text.

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].