Skip to content
#

Nest

nestjs logo

Nest (NestJS) is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with and fully supports TypeScript (yet still enables developers to code in pure JavaScript) and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).

Nest provides an out-of-the-box application architecture which allows developers and teams to create highly testable, scalable, loosely coupled, and easily maintainable applications.

Here are 1,396 public repositories matching this topic...

samcoenen
samcoenen commented Mar 11, 2019

Looks closely related to #779

I'm submitting a...


[ ] Regression
[x] Bug report
[ ] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow.

Current behavior

Middleware is being called for every endpoint a request route could potentially match.

crud
lafeuil
lafeuil commented Mar 13, 2020

I have this model

class User {
  name: string;
  friends: User[];
}

And I have created a crud controller to manage and get user without friends property.
To get friends of a user, I have added an "adding route" :

  @Get(':id/friends')
  @UseInterceptors(CrudRequestInterceptor)
  async getFriends(@ParsedRequest() req: CrudRequest) {
    return this.
nodepress
qingfengming
qingfengming commented Sep 23, 2018

npm install error : 依赖的包(ssh://github.com/surmon-china/mongoose-paginate.git)不存在

i@mingbai:~/node/nodepress$ npm install
npm ERR! Error while executing:
npm ERR! /usr/bin/git ls-remote -h -t ssh://git@github.com/surmon-china/mongoose-paginate.git
npm ERR! 
npm ERR! Permission denied (publickey).
npm ERR! fatal: 无法读取远程仓库。
npm ERR! 
npm ERR! 请确认您有正确的访问权限并且仓库存在。
npm ERR! 
npm ERR! ex

Created by NestJS

Released May 14, 2017

Latest release 18 days ago

Repository
nestjs/nest
Website
nestjs.com
You can’t perform that action at this time.