jspa

Javascript Persistence API

2
0
2
1
JavaScript
public

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 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.

v0.3.3[beta]