All Projects → facebook → Prepack

facebook / Prepack

Licence: other
A JavaScript bundle optimizer.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Prepack

Peroxide
Rust numeric library with R, MATLAB & Python syntax
Stars: ✭ 191 (-98.67%)
Mutual labels:  optimization
Orangec
OrangeC Compiler And Tool Chain
Stars: ✭ 204 (-98.58%)
Mutual labels:  optimization
Dietpi
Lightweight justice for your single-board computer!
Stars: ✭ 2,871 (-80.02%)
Mutual labels:  optimization
Cornell Moe
A Python library for the state-of-the-art Bayesian optimization algorithms, with the core implemented in C++.
Stars: ✭ 198 (-98.62%)
Mutual labels:  optimization
Grunt Image
Optimize PNG, JPEG, GIF, SVG images with grunt task.
Stars: ✭ 201 (-98.6%)
Mutual labels:  optimization
Androidgodeye
An app performance monitor(APM) , like "Android Studio profiler", you can easily monitor the performance of your app real time in browser
Stars: ✭ 2,430 (-83.09%)
Mutual labels:  optimization
Coz
Coz: Causal Profiling
Stars: ✭ 2,719 (-81.08%)
Mutual labels:  optimization
Awesome Go Perf
A curated list of Awesome Go performance libraries and tools
Stars: ✭ 223 (-98.45%)
Mutual labels:  optimization
Python Mip
Collection of Python tools for the modeling and solution of Mixed-Integer Linear programs
Stars: ✭ 202 (-98.59%)
Mutual labels:  optimization
Gulp Image
Optimize PNG, JPEG, GIF, SVG images with gulp task.
Stars: ✭ 213 (-98.52%)
Mutual labels:  optimization
Ompr
R package to model Mixed Integer Linear Programs
Stars: ✭ 198 (-98.62%)
Mutual labels:  optimization
Odl
Operator Discretization Library https://odlgroup.github.io/odl/
Stars: ✭ 198 (-98.62%)
Mutual labels:  optimization
Meshoptimizer
Mesh optimization library that makes meshes smaller and faster to render
Stars: ✭ 2,930 (-79.61%)
Mutual labels:  optimization
Pygpgo
Bayesian optimization for Python
Stars: ✭ 196 (-98.64%)
Mutual labels:  optimization
Webpackmonitor
A tool for monitoring webpack optimization metrics through the development process
Stars: ✭ 2,432 (-83.07%)
Mutual labels:  optimization
Aerosandbox
Aircraft design optimization made fast through modern automatic differentiation. Plug-and-play analysis tools for aerodynamics, propulsion, structures, trajectory design, and much, much more.
Stars: ✭ 193 (-98.66%)
Mutual labels:  optimization
Quantum Neural Networks
This repository contains the source code used to produce the results presented in the paper "Continuous-variable quantum neural networks". Due to subsequent interface upgrades, these scripts will work only with Strawberry Fields version <= 0.10.0.
Stars: ✭ 207 (-98.56%)
Mutual labels:  optimization
Fewshotlearning
Pytorch implementation of the paper "Optimization as a Model for Few-Shot Learning"
Stars: ✭ 223 (-98.45%)
Mutual labels:  optimization
Optimal Roadtrip Usa
Contains maps for the article, "Computing the optimal road trip across the U.S." and similar articles
Stars: ✭ 221 (-98.46%)
Mutual labels:  optimization
Datauri
Generate Data-URI scheme via terminal or node.js
Stars: ✭ 212 (-98.52%)
Mutual labels:  optimization

Prepack Circle CI

Prepack is a partial evaluator for JavaScript. Prepack rewrites a JavaScript bundle, resulting in JavaScript code that executes more efficiently. For initialization-heavy code, Prepack works best in an environment where JavaScript parsing is effectively cached.

See the official prepack.io website for an introduction and an interactive REPL playground.

Status

We, the Prepack team at Facebook, have temporarily set down work on Prepack including the React compiler project. You won't see many Prepack PRs while we are currently prioritizing some other projects.

How to use Prepack

Install the CLI via npm,

$ npm install -g prepack

Or if you prefer yarn, make sure you get yarn first,

$ npm install -g yarn

and then install the Prepack CLI via yarn:

$ yarn global add prepack

You may need to prepend (pun intended!) the command with sudo in some cases.

Let the party begin

To compile a file and print the output to the console:

$ prepack script.js

If you want to compile a file and output to another file:

$ prepack script.js --out script-processed.js

Detailed instructions and the API can be found at Prepack CLI: Getting Started

Plugins to other tools

The following are a few plugins to other tools. They have been created and are maintained separately from Prepack itself. If you run into any issues with those plugins, please ask the plugin maintainers for support.

Test Results and Code Coverage

How to get the code

  1. Clone repository and make it your current directory.
  2. git submodule init
  3. git submodule update --init
  4. Get yarn and node, then do yarn

Note: For development work you really need yarn, as many scripts require it.

How to build, lint, type check

  1. Get the code
  2. yarn build
    You can later run yarn watch in the background to just compile changed files on the fly.
  3. yarn lint
  4. yarn flow

How to run tests

  1. Get the code
  2. Make sure the code is built, either by running yarn build or yarn watch
  3. yarn test

You can run individual test suites as follows:

  • yarn test-serializer
    This tests the interpreter and serializer. All tests should pass.
  • yarn test-test262
    This tests conformance against the test262 suite. Not all will pass, increasing conformance is work in progress.

How to run the interpreter

  1. Get the code
  2. Make sure the code is built, either by running yarn build or yarn watch
  3. yarn repl
    This starts an interactive interpreter session.

How to run Prepack

  1. Get the code

  2. Make sure the code is built, either by running yarn build or yarn watch.

  3. Have a JavaScript file handy that you want to prepack, for example:
    echo "function hello() { return 'hello'; } function world() { return 'world'; } s = hello() + ' ' + world();" >/tmp/sample.js

  4. cat /tmp/sample.js | yarn prepack-cli
    Try --help for more options.

How to validate changes

Instead of building, linting, type checking, testing separately, the following does everything together:
yarn validate

How to edit the website

The content for prepack.io resides in the website directory of this repository. To make changes, submit a pull request, just like for any code changes.

In order to run the website locally at localhost:8000:

  1. Build prepack into the website: yarn build && mv prepack.min.js website/js
  2. Run python -m SimpleHTTPServer (Python 2) or python -m http.server (Python 3) from the website/ directory

How to contribute

To read more about the project, check out this suggested reading wiki

For more information about contributing pull requests and issues, see our Contribution Guidelines.

License

Prepack is BSD-licensed. We also provide an additional patent grant.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].