Express
Express.js is a simple Node.js framework for single, multi-page, and hybrid web applications.
Here are 23,996 public repositories matching this topic...
Given the immense popularity of Docker and the need to harden it different per platform (see ideas below) - we'd like to start writing a Docker best practices section.
You're welcome to contribute ideas and write best practices - writing and brainstorming will people is an amazing way to deepen your Docker understanding.
At first, we want to collect ideas for best practices, solidify a list
On Windows10 machine, following README installation instructions:
c:\code\mean>npm start
mean@2.0.2 start c:\code\mean
concurrently -c "yellow.bold,green.bold" -n "SERVER,BUILD" "nodemon server" "ng build --watch"
[SERVER] [nodemon] 1.18.9
[SERVER] [nodemon] to restart at any time, enter rs
[SERVER] [nodemon] watching: .
[SERVER] [nodemon] starting node server
[SERVER] ../.
https://www.apollographql.com/docs/apollo-server/data/errors/#codes
Mentions that:
In addition to stacktraces, Apollo Server's exported errors specify a human-readable string in the code field of extensions that enables the client to perform corrective actions. In addition to improving the client experience, the code field allows the server to categorize errors. For example, an Authenticat
Execute one command (or mount one Node.js middleware) and get an instant high-performance GraphQL API for your PostgreSQL database!
-
Updated
Jul 15, 2020 - JavaScript
High performance JavaScript templating engine
-
Updated
Oct 20, 2019 - JavaScript
The second example in section 1.1 says:
expect(result.approved).to.be.false;
It should be:
expect(result.approved).to.be.true;
(I'm guessing you made it false so you could simulate the error output in the next picture.)
A reference example for TypeScript and Node with a detailed README describing how to use the two together.
-
Updated
Jul 15, 2020 - CSS
Similar to #12119
When a string is updated in the English source files they should be reset to the english version in all other languages since the meaning might have changed and the translation be outdated.
We might have to change a setting in Weblate or update the script that updates the translation files here.
A Beautiful Open Source RSS & Podcast App Powered by Getstream.io
-
Updated
Jul 16, 2020 - JavaScript
-
Updated
Jul 16, 2020 - TypeScript
HTTP request logger middleware for node.js
-
Updated
Apr 18, 2020 - JavaScript
An express.js middleware for validator.js.
-
Updated
Jun 21, 2020 - TypeScript
Hacker News clone rewritten with universal JavaScript, using React and GraphQL.
-
Updated
Jun 6, 2020 - TypeScript
Practical Node.js, 1st and 2nd Editions [Apress]
-
Updated
Feb 13, 2020 - JavaScript
Run serverless applications and REST APIs using your existing Node.js application framework, on top of AWS Lambda and Amazon API Gateway
-
Updated
Jul 16, 2020 - JavaScript
-
Updated
Jul 16, 2020 - JavaScript
OAuth Proxy
-
Updated
Jul 13, 2020 - JavaScript
做最好的接口管理平台
-
Updated
Mar 27, 2020 - JavaScript
-
Updated
Jul 15, 2020 - JavaScript
-
Updated
Jul 16, 2020 - JavaScript
Implementation of a bulletproof node.js API
-
Updated
Jul 16, 2020 - TypeScript
-
Updated
Jul 9, 2020 - JavaScript
Created by TJ Holowaychuk
Released November 16, 2010
- Organization
- expressjs
- Website
- expressjs.com
- Wikipedia
- Wikipedia


Express uses hardcoded values for debug namespace, for example:
https://github.com/expressjs/express/blob/b69b7605b07b41273acc931d25ab585377bcd107/lib/router/index.js#L20
and it is extremly hard to determine in output where things are happening while doing TDD on microservices architecture. It would be nice to allow to specify prefix for namespace, i.e. per microservice which is an express app.