https://github.com/trentmwillis/babel-plugin-cena
A Babel plugin to make your application instantly awesome
https://github.com/trentmwillis/babel-plugin-cena
babel babel-plugin cena
Last synced: about 2 months ago
JSON representation
A Babel plugin to make your application instantly awesome
- Host: GitHub
- URL: https://github.com/trentmwillis/babel-plugin-cena
- Owner: trentmwillis
- Created: 2017-05-17T00:46:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-17T01:14:32.000Z (about 9 years ago)
- Last Synced: 2025-03-05T01:06:43.373Z (over 1 year ago)
- Topics: babel, babel-plugin, cena
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# babel-plugin-cena
[](https://travis-ci.org/trentmwillis/babel-plugin-cena)
[](https://coveralls.io/github/trentmwillis/babel-plugin-cena?branch=master)
Tired of boring applications, that make you say "so what"?

Then `babel-plugin-cena` is for you! It will instantly infuse your application with the legendary awesomeness of [John Cena](http://knowyourmeme.com/memes/people/john-cena) and deliver a truly electrifying experience to your users!

(Also, makes for a good prank on your fellow developers)
## Installation
```sh
npm install --save-dev babel-plugin-cena
# or
yarn add --dev babel-plugin-cena
```
## Usage
### Via `.babelrc` (Recommended)
```json
{
"plugins": ["cena"]
}
```
### Via CLI
```sh
babel --plugins cena script.js
```
### Via Node API
```javascript
require("babel-core").transform("code", {
plugins: ["cena"]
});
```