Node.js
Node.js is a tool for executing JavaScript in a variety of environments. JavaScript had humble beginnings as a language that lived only in web browsers, but the Node.js project has expanded its reach and helped make it the most popular programming language in the world. Node.js extends the creative potential of people with web development experience, enabling a new generation of developers to create servers, command-line tools, desktop apps, and even robots.
-
- Sign up for GitHub or sign in to edit this page
- Created by Ryan Dahl
- Released May 27, 2009
Here are 15,372 public repositories matching this topic...
:zap: Delightful Node.js packages and resources
-
Updated
Oct 30, 2019 - 754 commits
Document `t.try()`
#1947 landed a new t.try() assertion. It's experimental, one of the reasons for which is that we don't have documentation yet.
We need to document the assertion, how to use it and what the edge cases are.
Apologies for how bare this issue is — happy to elaborate more if you're looking to contribute this
isIBAN & isBIC
Could you implement those function inside the validator ?
Those would be very usefull .
Thank you .
Simple to use, blazing fast and thoroughly tested WebSocket client and server for Node.js
-
Updated
Oct 30, 2019 - 1 commits
- JavaScript
The MEAN stack uses Mongo, Express, Angular(6) and Node for simple and scalable fullstack js applications
-
Updated
Oct 29, 2019 - 2 commits
- TypeScript
A node.js version management utility for Windows. Ironically written in Go.
-
Updated
Oct 30, 2019 - 224 commits
- Go
Node version (or tell us if you're using electron or some other framework):
12.1.0
ShellJS version (the most recent version/Github branch you see the bug on):
0.8.3
Operating system:
Windows
Description of the bug:
sed is applied only once by line:
original archive:
import [COMPONENTNAME]Base from './[COMPONENTNAME]Base';
`const [COMPONENTNAME] = styled( [COMPONENTNAME]
Website is down?
🤖 Neural networks in JavaScript
-
Updated
Oct 30, 2019 - 985 commits
- JavaScript
🕷Super-agent driven library for testing node.js HTTP servers using a fluent API.
-
Updated
Oct 30, 2019 - 351 commits
- JavaScript
Context
A developer might attempt to do:
interface NoIndexSignature {
a: 'a';
}
const matcher: NoIndexSignature = { a: 'a' };
nock('https://example.com').put('/', matcher);which will not pass the type checking as opposed to
const matcher: { a: 'a' } = { a: 'a' };
nock('https://example.com').put('/', matcher);I think this might be by design,
This is wrong and needs some updates. exclude, specs, maxInstances, shardTestFiles, count, seleniumAddress are not capabilities.
https://github.com/angular/protractor/blob/master/lib/config.ts#L300-L322
Please submit PR's to the selenium4 branch.
Related: angular/protractor#5128
🌍 GraphQL server for Express, Connect, Hapi, Koa and more
-
Updated
Oct 30, 2019 - 3 commits
- TypeScript
Hi, if you are reading this is because you pretty likely don't know how to start
So, let's fix that
What should I know before start?
All here we are developers with different backgrounds, languages and objectives. But, all we must follow certain rules so we can understand each other and make the communication easier as possible. Please
I am trying to run an express app through Visual Studio Code. I have a launch.json file with DEBUG defined like so:
"env": {
"DEBUG": "*"
}
Here is a trimmed down version of my app.js file where you can see the bolded debug line that doesn't output to the debug console (Test 2). Test 1 before it outputs as expected. If I run this from the command li
Execute one command (or mount one Node.js middleware) and get an instant high-performance GraphQL API for your PostgreSQL database!
-
Updated
Oct 30, 2019 - 1 commits
- JavaScript
AWS Lambda currently supports Node v10.x
Can you please support it.
As described at HabitRPG/habitica#9745 it's possible for the gem prize for a challenge to be null which results in the prize box on the challenge having a blank space where the number of gems should be, as shown in the screenshot below.
As I mentioned in one of my comments there a null prize d
🚀A robust, performance-focused and full-featured Redis client for Node.js.
-
Updated
Oct 30, 2019 - 987 commits
- TypeScript
pnpm version:
3.8.1
Code to reproduce the issue:
I have a repo containing multiple packages. I have a package.json file at the root to define some scripts. Since I do not have any dependencies in this package.json, there is no lockfile created.
I want to run pnpm recursive outdated to see if there was any outdated dependencies in my packages. Unfortunately, I got the follow
In many places in the documentation (example:
'socket'event),socketis not necessarily anet.Socket, but always astream.Duplex(whichnet.Socketinherits from). We should at least mention that if we don't want to replace all references.