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
-
Updated
Jul 15, 2020 - JavaScript
-
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.)
-
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.
-
Updated
Jul 16, 2020 - JavaScript
-
Updated
Jul 16, 2020 - TypeScript
-
Updated
Apr 18, 2020 - JavaScript
-
Updated
Jun 21, 2020 - TypeScript
-
Updated
Jun 6, 2020 - TypeScript
-
Updated
Feb 13, 2020 - JavaScript
-
Updated
Jul 16, 2020 - JavaScript
-
Updated
Jul 16, 2020 - JavaScript
-
Updated
Jul 13, 2020 - JavaScript
-
Updated
Mar 27, 2020 - JavaScript
-
Updated
Jul 15, 2020 - JavaScript
-
Updated
Jul 16, 2020 - JavaScript
-
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.