npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

angular-sails-socket

v0.3.6

Published

Helpers to bind Angular to Sails' implementation of Socket.io

Downloads

8

Readme

Angular Sails Socket

Helpers to bind Angular with Sails' implemention of Socket.io. This includes wrapping of the "RESTful" Socket actions with an Angular promise.

This module depends on the sails.io.js library generated by Sails. It will throw an exception if the Sails library is not loaded before this module.

Wrapping Sails Sockets

The following actions have been wrapped in Angular style promises to ensure that returns are processed in scope, negating the need for $scope.$apply()

  • sailsSocket.get
  • sailsSocket.post
  • sailsSocket.put

Before Angular Sails Sockets, a basic get using sails.io.js could look like:

io.socket.get('/widgets', function(data, response) {
  $scope.widgets = data;
  $scope.$apply();
});

Afterwards, the same call would look like:

sailsSocket.get('/widgets').then(function(data) {
  $scope.widgets = data;
});

If a status code above 400 is returned, the promise is rejected and the response can be handled or ignored in your controller depending on your needs.

We can actually simplify the above code even more, thanks to a few custom helpers that are included in the library. For example, the following code functions identical to the snippet above, but in a single line:

$scope.widgets = sailsSocket.populateMany('widgets');

Sails Socket Helpers and Bindings

The following custom helpers and bindings are available to take care of many common tasks involved in communicating between Angular and Sails via Sockets:

  • sailsSocket.populateOne / sailsSocket.populateMany

This will automatically populate a scope variable with the data returned from the socket request. populateOne is used for a single variable or object while populateMany can be used for populating a collection of objects:

$scope.myWidget = sailsSocket.populateOne('widgets/1234');
$scope.widgets = sailsSocket.populateMany('widgets');
  • sailsSocket.sync / sailsSocket.syncOne / sailsSocket.syncMany

Listen to incoming Socket events and update the scope variable specified. Using sync, the provided scope variable will be checked and the appropriate syncOne or syncMany helper will be called. Similar to the above, these are used based on whether you are observing an object or collection of objects.

sailsSocket.sync($scope.myWidget, 'widget');
  • sailsSocket.editable

Instantiates an Angular $watch on the provided variable. Any changes will automatically post data back to the server over sockets. This includes the csrfToken which is required by Sails to authenticate the request. You must provide an array of fields which will be considered editable.

sailsSocket.editable($scope, 'myWidget', ['name', 'serialNumber']);

The csrfToken can be reached manually at $scope.$root.sailsSocket._csrf