A basic example using NodeJS and Sequelize as a API for persist data for Unity games.
WebGL preview: http://unity-brazil.github.io/Unity-Node-Persist/
Download this project as zip.
or clone this project
git clone git@github.com:Unity-Brazil/Unity-Node-Persist.git
npm install
I'm using Sequelize with PostgreSQL
, but you use other database changing the dialect on config/config.js
file.
$ psql -h localhost -U user -p 5432 -d unity_db
# create database unity_db;
after run application sequelize will create our tables
npm start
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request