Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

reboost

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reboost

A super fast dev server for rapid web development

  • 0.13.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-71.43%
Maintainers
1
Weekly downloads
 
Created
Source

Reboost

Reboost is a super fast dev server for rapid web development.

CircleCI npm maintained with lerna license

Experimental
Reboost is in early development, and some things may change/break before we hit version 1.0
NOTE
Reboost is intended to use only on development, for production you've to bundle up your files by yourself using bundlers like Webpack, Rollup, etc.

What it does

When developing a web app, as your number of modules increases, your compile-time slows down, it's a big problem, it takes a lot of precious time which you could have used to develop your app. Since ES2015 (aka ES6) modules are supported natively by browsers. If you can connect (or you can say serve) them up correctly, it will work on browsers without the need for bundling. Here, Reboost does that for you - the serving part. So you can develop your app faster.

Features

  • No bundling. So the server start time is fast.
  • Transforms only the required/changed files.
  • Uses advanced filesystem cache + memory cache. It will stay fast even after restarting.
  • Source maps support for better developer experience.
  • Supports CommonJS modules.
  • Support for Plugins.
  • Import resolving.
  • Built-in Hot Reload API.
  • Out of the box support for JSON, CSS Modules, JSX, PostCSS, and TypeScript.
  • Preprocessor support.
  • Works with Electron.

What are supported

See the Recipes for many template configurations.

Compatibility

Reboost works with both CommonJS and ES modules, so you can try it even if you are not using ES modules, though using ES modules is recommended.

Docs

Changelog
Configurations
Plugins
Plugin API
Hot Reload API
Recipes
FAQs/Troubleshooting
Supporting old browsers while using script type="module"

Quickstart

Using npm init

Run this command in your terminal

npm init @reboost/app

Then it will ask you to choose a template from available templates.

After that, open the directory where your app is extracted, install dependencies, then run

node reboost

Manually creating an app

First, install it

# Using npm
npm i -D reboost


# Using yarn
yarn add -D reboost

Assume that file structure is like this

public/
  index.html
src/
  add.js
  subtract.js
  index.js
package.json

Scripts content

// src/add.js
export const add = (a, b) => a + b;

// src/subtract.js
export const subtract = (a, b) => a - b;

// src/index.js
import { add } from './add';
import { subtract } from './subtract';

console.log('1 + 3 =', add(1, 3));
console.log('10 - 5 =', subtract(10, 5));

and the HTML content (public/index.html)

<!doctype html>
<html>
  <body>
    <!-- Note that the type is "module" -->
    <script type="module" src="./dist/bundle.js"></script>
  </body>
</html>

then create a file named reboost.js

const { start } = require('reboost');

start({
  entries: [
    // Format - [inputPath, outputPath]
    ['./src/index.js', './public/dist/bundle.js']
  ],
  contentServer: {
    root: './public',
    open: true // Opens the browser
  }
})

after that run the script using node, open your terminal in that directory and use the command

node reboost

You can see your code is working without any problem.

Read more about Reboost in the Documentations.

License

Licensed under the MIT License.

Keywords

FAQs

Package last updated on 04 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc