The Wayback Machine - https://web.archive.org/web/20201110152716/https://github.com/topics/compiler?l=javascript
Skip to content
#

Compiler

Compilers are software that translate higher-level (more human readable) programming languages to lower-level languages (e.g. machine code). The processor executes machine code, which indicates when binary high and low signals are required in the arithmetic logic unit of the processor. Examples of compiled languages include BASIC, Fortran, C++, C, and Java.

Here are 377 public repositories matching this topic...

next.js
hanakla
hanakla commented Nov 4, 2020

Feature request

Add example for Fleur.

Fleur is an Flux framework inspired of Fluxible / Redux with modern React API and cool type inference.
It is production ready and working in pixiv Comic with Next.js.

Is your feature request related to a problem? Please describe.

It's not relevant to any problem. This is proposa

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 Nov 10, 2020
  • JavaScript
nicolo-ribaudo
nicolo-ribaudo commented Oct 3, 2020

Since we are now only building Babel on Node.js 14 (even if we still test it on Node.js 6), we can use native ECMAScript modules for the build scripts:

  • Top-level scripts
    There are a bunch of scripts/tests in the scripts folder: they can probably all be rewritten to ES modules.
    We can probably add "type": "module" to the top
alystair
alystair commented May 31, 2020

What pain point are you perceiving?.
I'm reviewing Marked documentation, attempting to create a custom setup where, it transforms new lines starting with 'notice: ' into a specifically formatted DIV. By my understanding I need to first add a custom named tokenizer and then a renderer based on it? Or am I going about this the wrong way?

Describe the solution you'd like
I'd like to ea

ballercat
ballercat commented Oct 14, 2018

Problem

walt-cli package when linking multiple .walt files together can "wrap" the modules in a stand-alone JS module. The resulting module is too large because it serialized the dependency tree with the AST information encoded directly into the output, resulting in a massive amount of js.

Encoding the dependencies into the file is done to ensure the module can be used stand-alone in br

andreyluiz
andreyluiz commented Jan 11, 2020

Is your feature request related to a problem? Please describe.
Our current CLI commands are too verbose. When it concerns tests, this is annoying. Also, when error occurs, the error message is the only thing I see.

Describe the solution you'd like
I want to run commands silently and, if an error occurs, be able to trace the problem.

Describe alternatives you've considered
I su

You can’t perform that action at this time.