https://github.com/gluons/joycon-yaml-loader
A YAML loader for JoyCon.
https://github.com/gluons/joycon-yaml-loader
joycon joycon-loader yaml yml
Last synced: about 1 year ago
JSON representation
A YAML loader for JoyCon.
- Host: GitHub
- URL: https://github.com/gluons/joycon-yaml-loader
- Owner: gluons
- License: mit
- Created: 2018-05-27T11:05:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-08T05:21:23.000Z (over 1 year ago)
- Last Synced: 2025-04-12T06:43:47.713Z (about 1 year ago)
- Topics: joycon, joycon-loader, yaml, yml
- Language: TypeScript
- Size: 293 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# joycon-yaml-loader
[](./LICENSE)
[](https://www.npmjs.com/package/joycon-yaml-loader)
[](https://travis-ci.com/gluons/joycon-yaml-loader)
A [YAML](http://yaml.org/) loader for [JoyCon](https://github.com/egoist/joycon).
## Installation
```bash
npm install joycon-yaml-loader
# or #
yarn add joycon-yaml-loader
```
## Usage
```js
const JoyCon = require('joycon');
const JoyConYAMLLoader = require('joycon-yaml-loader');
const joycon = new JoyCon();
joycon.addLoader(JoyConYAMLLoader);
joycon.load([/* file... */]);
```