
Security News
The Nightmare Before Deployment
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.
cerebral-angular-immutable-store
Advanced tools
A cerebral package for angular and immutable-store
You can download the Chrome debugger here.
Cerebral main repo is located here and a video demonstration can be bound here.
npm install cerebral-angular-immutable-store
or
bower install cerebral-angular-immutable-store
angular.module('app', ['cerebral'])
.config(function (cerebralProvider) {
// Sets the initial state of the app
cerebralProvider.setState({
list: ['foo']
});
// Sets default arguments passed to all signals
cerebralProvider.setDefaultArgs({
foo: 'bar'
});
})
.directive ('myComponent', function () {
return {
controllerAs: 'myComponent',
scope: {},
templateUrl: 'myComponent.html',
controller: function ($scope, cerebral) {
// Adds a "list" prop to the $scope which
// will automatically update when the list
// updates
cerebral.injectState($scope, {
list: ['list']
});
// Trigger signals
$scope.addItem = function () {
cerebral.signals.addItemClicked();
};
}
};
})
.run(function (cerebral) {
// Create actions
var addItem = function addItem (args, state) {
state.push('list', 'bar');
};
// Create signals
cerebral.signal('addItemClicked', addItem);
});
npm installnpm startlocalhost:8080FAQs
A Cerebral package for angular and immutable store
The npm package cerebral-angular-immutable-store receives a total of 3 weekly downloads. As such, cerebral-angular-immutable-store popularity was classified as not popular.
We found that cerebral-angular-immutable-store demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.

Research
/Security News
Impostor NuGet package Tracer.Fody.NLog typosquats Tracer.Fody and its author, using homoglyph tricks, and exfiltrates Stratis wallet JSON/passwords to a Russian IP address.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.