All Projects → mentos1386 → lynx

mentos1386 / lynx

Licence: MIT license
Opinionated Framework built on top of NestJS and TypeORM

Programming Languages

typescript
32286 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to lynx

nestjs-api-example
NestJS Example
Stars: ✭ 60 (+36.36%)
Mutual labels:  typeorm, nestjs
MyAPI
A template to create awesome APIs easily ⚡️
Stars: ✭ 117 (+165.91%)
Mutual labels:  typeorm, nestjs
Nestjs-Typeorm-Auth
NestJS + Typeorm codebase containing a full authentification system with roles, sessions and email verification.
Stars: ✭ 37 (-15.91%)
Mutual labels:  typeorm, nestjs
Mili
mili 是一个开源的社区系统,界面优雅,功能丰富😛
Stars: ✭ 2,875 (+6434.09%)
Mutual labels:  typeorm, nestjs
Domain Driven Hexagon
Guide on Domain-Driven Design, software architecture, design patterns, best practices etc.
Stars: ✭ 4,417 (+9938.64%)
Mutual labels:  typeorm, nestjs
nest-todo
🐱 使用 React.js + Nest.js 实现一个简单的 Todo App。
Stars: ✭ 205 (+365.91%)
Mutual labels:  typeorm, nestjs
nestjs-api-mongoose
Collection example apps with NestJS and Typeorm, Sequelize, Mongodb, PostgreSQL, MySQL, GraphQL, Mercurius, etc. for the NestJS community 😻
Stars: ✭ 153 (+247.73%)
Mutual labels:  typeorm, nestjs
nest-admin
采用nestjs typeorm vue开发的一套权限管理系统
Stars: ✭ 256 (+481.82%)
Mutual labels:  typeorm, nestjs
Crud
NestJs CRUD for RESTful APIs
Stars: ✭ 2,709 (+6056.82%)
Mutual labels:  typeorm, nestjs
node-nestjs-structure
Node.js framework NestJS project structure
Stars: ✭ 258 (+486.36%)
Mutual labels:  typeorm, nestjs
ng-nest-cnode
Angular 10 Front-End and Nestjs 7 framework Back-End build Fullstack CNode
Stars: ✭ 17 (-61.36%)
Mutual labels:  typeorm, nestjs
nestjs-auth-starter-kit
NestJS Auth Starter Kit (typescript / typeorm / swagger / passport / bcrypt)
Stars: ✭ 37 (-15.91%)
Mutual labels:  typeorm, nestjs
renestql
React, NestJS & GraphQL monorepo boilerplate managed with nx
Stars: ✭ 25 (-43.18%)
Mutual labels:  typeorm, nestjs
nest-boilerplate
Nest.js boilerplate with CircleCI, Commitizen, Commitlint, Docker-Compose, ESLint, GitHub Actions, Husky, Lint-staged, OpenAPI, Prettier, PostGreSQL, Travis CI, TypeORM
Stars: ✭ 16 (-63.64%)
Mutual labels:  typeorm, nestjs
nestjs-rest-cqrs-example
Example for Nest.js, MySQL, Redis, REST api, CQRS, DDD
Stars: ✭ 263 (+497.73%)
Mutual labels:  typeorm, nestjs
teanjs
🔥 TypeORM - Express - Angular 8 - NestJS Server Side Rendering (SSR) 😺
Stars: ✭ 62 (+40.91%)
Mutual labels:  typeorm, nestjs
BUA-FE
本科毕设,搭建一套小而全面的校园外卖系统。主要使用wei-xin-mini + TypeScript + nest.js + typeORM + rabbitmq技术栈。
Stars: ✭ 20 (-54.55%)
Mutual labels:  typeorm, nestjs
nest-admin
NestJs CRUD for RESTful API使用 nestjs + mysql + typeorm + redis + jwt + swagger 企业中后台管理系统项目RBAC权限管理(细粒度到按钮)、实现单点登录等。
Stars: ✭ 165 (+275%)
Mutual labels:  typeorm, nestjs
mom
Proof of concept for Message-Oriented-Middleware based architecture.
Stars: ✭ 39 (-11.36%)
Mutual labels:  typeorm, nestjs
nest-typeorm-auth-boilerplate
A NestJS boilerplate with TypeORM and authentication
Stars: ✭ 15 (-65.91%)
Mutual labels:  typeorm, nestjs

Lynx Framework

ABANDONED PROJECT Sadly i don't have enough time to focus on this project. Might return to it sometime in the future.

For now, it can be taken as a referance, but not an actual framework.

Built with

Bold are required components (not easy to replace)

Component Using Descrption
Base NestJS
Database TypeORM
File Upload Multer
Logger Winston
Error Reporting Sentry
Validation Class-Validator
Documentation Swagger
Configuration Dotenv
Authentication Passport.js
Testing Mocha & Chai
Code Style Airbnb & TS-Lint

Progress

  • File Upload (disk, s3, memory)
  • Authentication (JWT, OAuth)
  • Logger
  • Request Context
  • Error Reporting
  • Database Migrations
  • Database Seeding
  • Testing (e2e, unit)

Usage

Install

$ npm install

Create new file .env in project root folder using example.env as a template.

Start

Development environment:

$ npm run start

Production environment:

$ npm run build
$ node dist/src/api.ts

Initial database creation

$ npm run migrate sync

Migrations

Creating new migration named createSomeModel:

$ npm run migrate create createSomeModel

Other commands are self-explanatory:

$ npm run migrate [up|down|executed|pending|create]

E2E Testing

First run the testing server:

$ npm run start:test

Then run Mocha testing framework:

$ mocha test/*.spec.ts

Before hooks in e2e/ directory will clean test database, initialize sequelize and seed fake data.

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