Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Initial Comit
Browse files Browse the repository at this point in the history
  • Loading branch information
arisjulio committed Oct 11, 2018
0 parents commit ea3046a
Show file tree
Hide file tree
Showing 10 changed files with 5,783 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"edge": "17",
"firefox": "60",
"chrome": "67",
"safari": "11.1"
},
"useBuiltIns": "usage"
}
]
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
test/index-compiled.js
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#SCORM Adapter

## Installation

```bash
npm i arisjulio/scorm-api-adapter
```

## Usage

```javascript
import SCORMAdapter from 'scorm-api-adapter';

window.API = new SCORMAdapter('http://your-api-to-comit.org');
```

> You must return an `success` in your API for know if the commit attempt was successfully executed.
Loading

0 comments on commit ea3046a

Please sign in to comment.