This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bernhard Blieninger
fc05486403
|
6 years ago | |
---|---|---|
.. | ||
.npmignore | 6 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
index.js | 6 years ago | |
package.json | 6 years ago |
README.md
babel-preset-es2015-node
Babel preset for the minimum necessary
babel-preset-es2015
plugins needed for your version of node
This preset automatically determines which version of node you are using via process.version
and sets the minimum necessary babel-preset-es2015
plugins accordingly.
All versions of node ≥4 are supported.
Note: the major version of this package corresponds to the compatible major version of Babel (i.e. use babel-preset-es2015-node@6
with babel-cli@6
.
Install
$ npm install --save-dev babel-preset-es2015-node
Usage
Via .babelrc
(Recommended)
.babelrc
{
"presets": ["es2015-node"]
}
Via CLI
$ babel script.js --preset es2015-node
Via Node API
require("babel-core").transform("code", {
presets: ["es2015-node"]
});