GitXplorerGitXplorer
t

webcompiler

public
8 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
eb094f1632e5313ed0c5391a303150f1416b9629

Release v7.0.1

tthealjey committed 8 years ago
Unverified
9b85f4b4ba707b7840377795a2c9fe58597647f1

build

tthealjey committed 8 years ago
Unverified
2e7d0ba59783d71e64b3e3d594d9e331b36f204d

[fixed] `React.PropTypes` is deprecated in favor of the `"prop-types"` module

tthealjey committed 8 years ago
Unverified
edaa3effc465516ff41384ad35bf69f06a54f5d3

[fixed] the `isNode` check for when the `process` variable exists in the browser

tthealjey committed 8 years ago
Unverified
fbbdd35f7cca136d1d12fb3c8fe7df885ac3c55c

Release v7.0.0

tthealjey committed 8 years ago
Unverified
ff10ae8a930314c8907ffba0ab048437350983e3

build

tthealjey committed 8 years ago

README

The README file for this repository.

webcompiler

NPM

Lint, type-check, compile, package and gzip JavaScript (ES6 + Flow static types + JSX), for the browser as well as NodeJS; lint, compile, auto-prefix, minify and gzip SASS.

Project Home | API Docs | Changelog | Discord

Node.js Version Build Status Coverage Status Code Climate Dependency Status Downloads License

Webpack is an amazing tool, however it requires a lot of boilerplate to properly setup and configure, especially when you use it on more than one project.

ESLint is constantly updated, new rules are added, APIs are changed. Properly configuring it is a routine and time consuming task, which is completely impractical to perform on each project separately.

APIs are sometimes changed without any change in functionality (e.g. Babel 5 vs Babel 6).

This project aims to abstract all of those problems out of the development of applications and provide the simplest possible interface, pre-configured with everything set up and ready to use right after the installation.

babel-polyfill, autoprefixer, fast rebuilds with caching in development, production tree shaking, optimizations and compression that care even about your users public cache, everything completely automatic and baked into the library.

Have fun :)

Feedback

What did you struggle with?

Any feedback on Discord would be greatly appreciated. It does not require registration and won't take more than a few minutes of your time.

Prerequisites

  1. Watchman (only required by the watch function and the DevServer class; you don't need to know how it works, all you need to do is install it)

A note about Facebook Flow

Facebook Flow is a static analysis tool used to check your JavaScript code for possible errors at compile time.

It is very smart at understanding your program code, however you should not rely on it being smart enough to just understand your external dependencies too.

It can do that, the problem is that a typical NodeJS project can contain hundreds of NPM modules, with thousands of JavaScript files.

It is a very complicated task, even for a tool that smart, to parse all of them and stay performant enough to not only be usable but useful as well.

Which is why it must not be allowed to even try to understand any files that reside in a node_modules directory.

Interface Files must be used instead.

You can find examples of such interface files, as well as the interface file for the tool itself, in the interfaces directory.

Installation

npm i webcompiler --save-dev

Production builds

By default all compilation is done in development mode.

If you wish to compile for production just set the NODE_ENV environment variable to "production", the following additional actions will be performed by the compiler:

  1. advanced compilation time optimizations
  2. minification (only fe in production mode)
  3. g-zip compression (only fe in production mode)

Important!

The resulting JavaScript and CSS files from fe in production mode are gzip compressed for performance (see Gzip Components), so make sure to provide a "Content-Encoding" header to the browser (e.g. res.setHeader('Content-Encoding', 'gzip');).

Troubleshooting

watch

  1. If you've installed Watchman on OSX with homebrew and you notice that it suddenly stopped working, try the following:
  • launchctl unload -F ~/Library/LaunchAgents/com.github.facebook.watchman.plist
  • rm -rf /usr/local/var/run/watchman/
  • reinstall Watchman completely
  • if that does not solve your problem or the above steps do not apply to you report a bug describing your operating system version, Watchman version, webcompiler version, and your specific problem