An open API service indexing awesome lists of open source software.

https://github.com/degjs/samplemodule

A sample DEGJS repository. Please clone and follow this template when creating a new module.
https://github.com/degjs/samplemodule

guide

Last synced: 4 months ago
JSON representation

A sample DEGJS repository. Please clone and follow this template when creating a new module.

Awesome Lists containing this project

README

          

# [MODULE NAME]
[MODULE INTRO TEXT]

## Install
[MODULE NAME] is an ES6 module. Consequently, you'll need an ES6 transpiler ([Babel](https://babeljs.io) is a nice one) and a module loader ([SystemJS](https://github.com/systemjs/systemjs) will do the job) as part of your Javascript workflow.

If you're already using the [JSPM package manager](http://jspm.io) for your project, you can install [MODULE NAME] with the following command:

```
$ jspm install github:DEGJS/[MODULE NAME]
```

## Usage
```js
[EXAMPLE CODE]
```

## Options

#### options.[OPTION NAME]
Type: `[OPTION TYPE]` Default: `[OPTION DEFAULT VALUE]`
[OPTION DESCRIPTION]

## Methods

### .[METHOD NAME]()
Parameters: [METHOD PARAMETERS]
[METHOD DESCRIPTION]

## Browser Support

[MODULE NAME] depends on the following browser APIs:
+ [[API NAME]]([API REFERENCE LINK])

To support legacy browsers, you'll need to include polyfills for the above APIs.