aurelia-sails-socket-client
v0.14.0
Published
A simple, restful, message-based wrapper around sails.io client.
Downloads
12
Readme
aurelia-sails-socket-client
This library is part of the Aurelia platform and contains a simple, restful, message-based wrapper around sails.io client.
To keep up to date on Aurelia, please visit and subscribe to the official blog. If you have questions, we invite you to join us on .
Polyfills
- Depending on target browser(s), core-js may be required for
Promise
support.
Dependencies
Used By
This library is used directly by applications only.
Platform Support
This library can be used in the browser only.
Building The Code
To build the code, follow these steps.
- Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
- From the project folder, execute the following command:
npm install
- Ensure that Gulp is installed. If you need to install it, use the following command:
npm install -g gulp
- To build the code, you can now run:
gulp build
You will find the compiled code in the
dist
folder, available in three module formats: AMD, CommonJS and ES6.See
gulpfile.js
for other tasks related to generating the docs and linting.
Running The Tests
To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:
- Ensure that the Karma CLI is installed. If you need to install it, use the following command:
npm install -g karma-cli
- Ensure that jspm is installed. If you need to install it, use the following commnand:
npm install -g jspm
- Install the client-side dependencies with jspm:
jspm install
- You can now run the tests with this command:
karma start
Example
Load the plugin
During bootstrapping phase, you can now include the sails socket client plugin:
import { CSRFInterceptor, LoggerInterceptor } from 'aurelia-sails-socket-client';
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-sails-socket-client', (sails, io) => {
sails.configure(x => {
x.withBaseUrl('/api/v1');
// Example for CSRFInterceptor - if you are using Sails CSRF protection
x.withInterceptor(new CSRFInterceptor('/csrfToken', sails));
x.withInterceptor(new LoggerInterceptor());
});
});
aurelia.start().then(a => a.setRoot('app', document.body));
}
Now you can use it in you classes:
import { inject } from 'aurelia-framework';
import { SailsSocketClient } from 'aurelia-sails-socket-client';
@inject(SailsSocketClient)
export class Login {
constructor(sails) {
this.sails = sails;
}
login(credentials) {
this.sails.post("/login", credentials)
.then((response) => alert("Success login"))
.catch((response) => alert("Wrong credentials"));
}
}