The https://www.freeCodeCamp.org open source codebase and curriculum. Learn to code for free together with millions of people.
-
Updated
Dec 4, 2019 - 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.
The https://www.freeCodeCamp.org open source codebase and curriculum. Learn to code for free together with millions of people.
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
A declarative, efficient, and flexible JavaScript library for building user interfaces.
The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS
Promise based HTTP client for the browser and node.js
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
The referenced page describes the following:
Directives that behave like *ngIf can declare that they want the same treatment by including a static member marker that is a signal to the template compiler to treat them like *ngIf. This static member for *ngIf is:
public static ngIfUseIfTypeGuard: void;
It's not very clear that the pattern has to be `xyzUse
So our function arrayToHtmlList is in a pretty bad space and could use an update. We already had some discussion over at #675 but I wanted to move the update discussion over to an issue for more visibility.
Current problem:
It uses an awkward query selector instead of the `document.prototype.getElementBy
React components for faster and easier web development. Build your own design system, or start with Material Design.
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.
Fast, unopinionated, minimalist web framework for node.
When building and running storybook I would like to be able to pass parameters for angular.json. For instance injecting configurations in Angular is done with "ng serve -c my-config" or "ng build -c my-config" and I would like to do the same when running Angular inside storybook.
As Angular does not support environment variables that is not an option.
A professional front-end template for building fast, robust, and adaptable web apps or sites.
A modern JavaScript utility library delivering modularity, performance, & extras.
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"The FreeCodeCamp.cn(FCC China) open source codebase and curriculum. Learn to code and help nonprofits.
🗂 The perfect Front-End Checklist for modern websites and meticulous developers
Created by Brendan Eich
Released December 4, 1995
Currently when using the
--experimental-resolve-selfflag, with the following:{ "name": "test", "exports": "./test.js" }If including a
require('test')in thetest.jsfile and runningnode --experimental-resolve-self pkg/test.jsthis will throw an error.It works with "main" and exports subpaths though so may be a sugar-specific or main-specific error case fo