fidj
v15.0.4
Published
api.fidj.ovh js framework
Downloads
126
Maintainers
Readme
Install | APIs | Support | In progress | Thanks!
1) You're an app builder
Thank you for building great app. Fidj.ovh will support you to manager auth, session storage.
The easiest way
From scratch, with yeoman like described here : https://github.com/ofidj/fidj/wiki/How-build-a-freemium-angular-mobile-application-in-10-minutes
yo fidj
The normal way
Install with NPM :
npm install fidj --save
Look at APIs and integration patterns described in https://ofidj.github.io/fidj/
- with Angular
- with pure js
In brief :
// init your app
await fidjService.init('Your FidjAppId from https://fidj.ovh');
// login (auto register) your user
await fidjService.login('login', 'password');
// synchronise your session data
await fidjService.sync();
// put your data into session,
// it will be available everywhere but also offline
await fidjService.put({data : 'my session'});
//... sync, get data and so on
// logout if needed
await fidjService.logout();
2) You're a fidj dev
Thank you for your support !
Fidj.ovh is an Open Source project - we need you to provide great tools to great apps.
Develop
Fork the project
git clone https://github.com/ofidj/fidj.git
cd fidj
npm install
And make pull request ...
Testing
With npm :
$ npm test
With a OpenAPI (TODO) :
https://app.swaggerhub.com/api/mlefree/fidj-io_rest_api/
Release notes
In Release notes.
Thanks
@fidj @mat_cloud