nest
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 434 public repositories matching this topic...
-
Updated
Jun 25, 2020 - JavaScript
ScrollAllObservable and associated methods are an observable implementation that uses the scroll API to fetch all documents matching a query, supporting concurrent scrolls through slicing. Documentation should be added to demonstrate its usage, and a link added to the Elasticsearch reference documentation to point to those docs.
Is your feature request related to a problem? Please describe.
I couldn't find OpenThread's configurations description in https://openthread.io/reference. I think it helpful to have a centered place to introduce all OpenThread configuration and usage.
Describe the solution you'd like
Add a generated configurations page.
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.-
Updated
Jun 10, 2020 - TypeScript
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://[email protected]/surmon-china/mongoose-paginate.git
npm ERR!
npm ERR! Permission denied (publickey).
npm ERR! fatal: 无法读取远程仓库。
npm ERR!
npm ERR! 请确认您有正确的访问权限并且仓库存在。
npm ERR!
npm ERR! ex
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
When SwaggerModule is set up with prefix `api-
What do the following startTime and endTime configurations do, there are no associated API docs?
@Cron('0 0 2 * *', {
startTime: new Date(),
endTime: new Date(new Date().getTime() + 24 * 60 * 60 * 1000),
})
We can already set the scheduled interval with cron.
In order to make it easier for users, we introduce more and more version numbers in our documentation (current and previous NEST version, required and suggested CMake version, supported Python versions, ...). These are bound to get outdated and quite a number of documentation-related PRs are actually just fixing these after users report failures with the prescribed versions.
Wouldn't it be poss
I find the project really useful, the stack is very good for making scalable projects easily. It took some time however to get the hang of it since I'm not very experienced with nest. I think it will help other users start their projects right away with some sort of documentation similar to https://github.com/sahat/hackathon-starter
-
Updated
Jun 24, 2020 - TypeScript
-
Updated
May 14, 2020 - TypeScript
-
Updated
Jun 8, 2020 - TypeScript
-
Updated
Jun 25, 2020 - TypeScript
-
Updated
Jun 27, 2020 - TypeScript
-
Updated
Jun 27, 2020 - TypeScript
-
Updated
Jun 21, 2019 - Python
Created by NestJS
Released May 14, 2017
Latest release about 1 month ago
- Repository
- nestjs/nest
- Website
- nestjs.com
Looks closely related to #779
I'm submitting a...
Current behavior
Middleware is being called for every endpoint a request route could potentially match.