Skip to content
#

Front end

Front-end development is the process of producing HTML, CSS, and JavaScript for web application visuals and interactions.

Here are 9,696 public repositories matching this topic...

YanDevDe
YanDevDe commented Feb 18, 2020

What problem does this feature solve?

It would allow us to use numbers which is larger than MAX_SAFE_INTEGER.

What does the proposed API look like?

In HTML, {{BigInt("100")}}, {{100n}}, {{2n * 50n}} or {{50n + 50n}} should show "100" (it can be just simply string by using .toString()) at frontend.
At the moment using BigInt in "Mustache" syntax just throw error.
Sure, backu

bvaughn
bvaughn commented Jul 15, 2020

PR #19108 caused some Suspense-related DevTools regressions (more info available on #19368) which we did not catch because of the fact that DevTools tests are only run against the version of React in master.

We should follow the precedent of the regression fixtures tests and have CI run DevTools tests against multiple

eirslett-visma
eirslett-visma commented Mar 22, 2021

Describe the bug

When getting .ts files from the vite server, they are delivered with the wrong mime type.
Expected would be Content-Type: text/javascript but instead we get Content-Type: video/mp2t.

Reproduction

A simple minimal vite project, with a .ts file to be transpiled, should be enough. See the curl call below for reproducing it.

System Info

  • vite versio

前端面试每日 3+1,以面试题来驱动学习,提倡每日学习与思考,每天进步一点!每天早上5点纯手工发布面试题(死磕自己,愉悦大家),4000+道前端面试题全面覆盖,HTML/CSS/JavaScript/Vue/React/Nodejs/TypeScript/ECMAScritpt/Webpack/Jquery/小程序/软技能……

  • Updated Mar 23, 2021
  • JavaScript
ng-zorro-antd
Airblader
Airblader commented Mar 10, 2021

What problem does this feature solve?

Since monaco-editor 0.22.0¹, the global monaco object is only defined if you add

window.MonacoEnvironment = { globalAPI: true };

It would be nice if ng-zorro had some hook to configure MonacoEnvironment (also for potential other use-cases) before monaco-editor is actually loaded. Also, the documentation for onLoad is now slightly inco

Wikipedia
Wikipedia