Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chikara-chan/invincible
⚓️ A series of miscellaneous functional JavaScript utility library.
https://github.com/chikara-chan/invincible
babel chai coveralls eslint frontend istanbul miscellaneous mocha utility webpack yarn
Last synced: 19 days ago
JSON representation
⚓️ A series of miscellaneous functional JavaScript utility library.
- Host: GitHub
- URL: https://github.com/chikara-chan/invincible
- Owner: chikara-chan
- License: mit
- Created: 2017-02-13T06:24:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-29T04:42:28.000Z (over 7 years ago)
- Last Synced: 2024-10-08T06:07:37.168Z (29 days ago)
- Topics: babel, chai, coveralls, eslint, frontend, istanbul, miscellaneous, mocha, utility, webpack, yarn
- Language: JavaScript
- Homepage: https://chikara-chan.github.io/invincible/
- Size: 204 KB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Invincible
A series of miscellaneous functional JavaScript utility library.
[![Travis branch](https://img.shields.io/travis/chikara-chan/invincible/master.svg)](https://travis-ci.org/chikara-chan/invincible)
[![Coveralls branch](https://img.shields.io/coveralls/chikara-chan/invincible/master.svg)](https://coveralls.io/github/chikara-chan/invincible)
[![npm](https://img.shields.io/npm/v/invincible.svg)](https://www.npmjs.com/package/invincible)
[![npm](https://img.shields.io/npm/l/invincible.svg)](https://github.com/chikara-chan/invincible/blob/master/LICENSE)## Install
``` bash
$ npm install --save invincible
# Or
$ yarn add invincible
```## Usage
``` js
const invincible = require('invincible')
// Or
import invincible from 'invincible'
// Or
import {subModule, ...others} from 'invincible'
// Or
import subModule from 'invincible/lib/subModule'
```## API
This library documents is published at [GitHub Pages](https://chikara-chan.github.io/invincible/). Go to the site to see more details.
## Third Support
Supports [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) for loading modules on demand.
``` json
// .babelrc
{
"plugins": [
["import", {
"libraryName": "invincible",
"camel2DashComponentName": false
}]
]
}
`````` js
import {subModule, ...others} from 'invincible'
```Alternatively, using webpack 2 feature [tree-shaking](https://webpack.js.org/guides/tree-shaking/).
``` js
import {subModule, ...others} from 'invincible'
```## Links
[https://chikara-chan.github.io/invincible/](https://chikara-chan.github.io/invincible/)## License
Released under the [MIT](https://github.com/chikara-chan/invincible/blob/master/LICENSE) license.