Skip to content
#

JavaScript

javascript logo

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.

Here are 331,013 public repositories matching this topic...

Bartel-C8
Bartel-C8 commented May 9, 2022

Website or app

https://developer.chrome.com/blog/mv2-transition/

Repro steps

Use latest React DevTools with Electron (Chromium) (18.2.0 / Chromium 100)

  (node:80082) ExtensionLoadWarning: Warnings loading extension at ./node_modules/electron-devtools-vendor/extensions/react-developer-tools:
    Manifest version 2 is deprecated, and support will be removed in 2023. See https://
MoLow
MoLow commented Jul 14, 2022

following up the discussion in nodejs/node#43757
if we want to allow the concurrency option to be a boolean, we need to come up with good defaults

there are two levels of concurrency:

  1. when running multiple test files, using --test each file is spawned in its own process so we use os.cpus().length as the default
  2. inside a test file - we use 1 as the default
good first issue test_runner
bxantus
bxantus commented Jun 13, 2022

For me it would make a lot of sense to run check in watch mode.
I think that adding check subcommand was a great idea, and running it in watch mode would provide the best development experience (at least for me). Also if I'm not mistaken it would check further edits faster, as typescript compiler is already warmed up after the first check.

deno check --watch
good first issue feat help wanted --watch
angular
prabh-62
prabh-62 commented Jun 28, 2022

Which @angular/* package(s) are the source of the bug?

forms

Is this a regression?

No

Description

Expose ControlConfig type in public API

export type ControlConfig<T> = [T|FormControlState<T>, (ValidatorFn|(ValidatorFn[]))?, (AsyncValidatorFn|AsyncValidatorFn[])?];

https://github.com/angular/angular/blob/main/packages/forms/src/form_builder.ts#L

help wanted comp: forms state: has PR good first issue
jespertheend
jespertheend commented Jul 12, 2022

Bug Report

🔎 Search Terms

TS2463 javascript

🕗 Version & Regression Information

  • This is the behavior in every version I tried, and I reviewed the FAQ for entries about default

Playground Link

Bug Good First Issue
material-ui
joris-htx
joris-htx commented Jul 6, 2022

Duplicates

  • I have searched the existing issues

Latest version

  • I have tested the latest version

Current behavior 😯

CSS classes .Mui-active and .Mui-completed are not applied to MuiStepLabel iconContainer element. As a result, it's not possible to change the iconContainer style using custom theme

Expected behavior 🤔

I would expect the `.Mui-acti

new feature good first issue component: stepper
storybook
ndelangen
ndelangen commented Jul 18, 2022

Hey friends!

If you're looking for a way to contribute to storybook's codebase, i might have a few small-ish tasks most people should be able to pick up!

We're in the process of migrating away from having custom scripts to prepare out packages for publishing to npm.
We've used babel and tsc to generate a modern, esm, and cjs output (in different directories.

We've picked a new

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.

  • Updated Jul 22, 2022
  • JavaScript

Created by Brendan Eich

Released December 4, 1995

Website
developer.mozilla.org/en-US/docs/Web/JavaScript
Wikipedia
Wikipedia

Related Topics

nodejs