freeCodeCamp.org's open source codebase and curriculum. Learn to code at home.
-
Updated
Aug 18, 2020 - JavaScript
JavaScript (JS) is a lightweight interpreted or JIT-compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.
freeCodeCamp.org's open source codebase and curriculum. Learn to code at home.
React version: 16.12
Sometimes an "Unspecified error" will appear in the console and the viewer in the iframe won't load
.
Promise based HTTP client for the browser and node.js
AFAIK There's no documentation available for http.OutgoingMessage. Any new contributor willing to work on this can refer http.IncomingMessage for some inspiration.
Any filter starting with a dash is treated as an argument to the deno command and not for the actual filter option.
To reproduce, run:
deno test --filter "- my filter"And you will receive the following error:
error: Found argument '- ' which wasn't expected, or isn't valid in this context
Removing the dash works as expected:
deno test --filter "my filterHi All,
The documentation for creating feature mo
enum TokenKind {
LeftBrace,
}
function scan(text: string, pos: number) {
let c = text[pos];
switch (c) {
case '{': return TokenKind.LeftBrace;
case '}': return TokenKind.RightBrace;
}
}We should have a quick fix for the error message
Property 'RightBrace' does not exist on type 'typeof TokenKind'.
to add RightBrace as a missing enum memb
JavaScript 3D library.
When creating a TextField with multiline="true", variant="filled" and hiddenLabel="true", there is still a top padding being applied to the TextField where the label would go.
Short JavaScript code snippets for all your development needs
A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.
Describe the bug
Creating angular project with no initial app throws sb init error
• Detecting project type. ✓
• Adding Storybook support to your "Angular" app
TypeError: Cannot read property 'architect' of undefined
To Reproduce
Steps to reproduce the behavior:
Simple HTML5 Charts using the <canvas> tag
Fast, unopinionated, minimalist web framework for node.
A Vue.js 2.0 UI Toolkit for Web
A professional front-end template for building fast, robust, and adaptable web apps or sites.
A modern JavaScript utility library delivering modularity, performance, & extras.
Meteor, the JavaScript App Platform
A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.
Do you want to request a feature or report a bug?
feature request
What is the current behavior?
Currently yarn why won't indicate any package info in the resolutions field
If the current behavior is a bug, please provide the steps to reproduce.
"pkg": "^1.0.0"resolutions field in package.json, pkg: "1.0.0"Created by Brendan Eich
Released December 4, 1995
August - September 2020 • Online
Version
2.6.11
Reproduction link
https://jsfiddle.net/hgaL8t5n/
Steps to reproduce
Use translate=no in a template
What is expected?
template=no to be rendered in the HTML
What is actually happening?
translate=translate is being rendered instead
You can use devtools to inspect the rendered HTML in the reproducible