0.0.2 • Published 7 years ago

jspa v0.0.2

Weekly downloads
1
License
CC-BY-4.0
Repository
github
Last release
7 years ago

jspa 0.0.1

Javascript Persistence API

npm license travis greenkeeper mind BLOWN

Install with NPM

npm install --save jspa

Direct download

Include in your app

require

var Entity = require('jspa').Entity

import

import { Entity } from 'jspa'

AMD

define(['jspa'], function(jspa){
  var Entity = jspa.Entity
});

Script tag

<script src="https://cdn.rawgit.com/download/jspa/0.0.1/jspa.min.js"></script>
<script>
  var Entity = jspa.Entity
</script>

Usage

import { Entity } from 'jspa'

@Entity
class Message {
  // ...
}

Issues

Add an issue in this project's issue tracker to let me know of any problems you find, or questions you may have.

Copyright

Copyright 2017 by Stijn de Witt. Some rights reserved.

License

Licensed under the Creative Commons Attribution 4.0 International (CC-BY-4.0) Open Source license.