Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
angular-sf-load
Advanced tools
Manage AngularJS scope load.
When it comes to load resources in an AngularJS scope, things are very repetitive. Indeed, you have to manage with loading/failed/loaded etc... states all the time.
angular-sf-load
allows to do it by simply adding a promise state in your
controller/components state load/actions handling. Here is a simple example of
how to use it in a simple component:
<h1>Heroes</h1>
<!-- Handle all states first load wait -->
<p ng-if="$ctrl.states._all.activating">
Loading...
</p>
<!-- Handle all states first load failure -->
<p ng-if="$ctrl.states._all.failed && !$ctrl.states._all.activated">
Unrecoverable error: {{ $ctrl.states._all.failed.code }}
</p>
<!-- States were loaded once -->
<div ng-if="$ctrl.states._all.activated" ng-repeat="hero in $ctrl.list">
<h2>{{ hero.name }}</h2>
<!-- Cannot delete an hero twice + giving feedback ;) -->
<button ng-click="$ctrl.deleteHero(hero)"
ng-disabled="$ctrl.actions['delete:' + hero._id].loading">
{{ $ctrl.actions['delete:' + hero._id].loading ? 'Delete' : 'Deleting' }}
</button>
</div>
<!-- Handle hero list reload wait -->
<p ng-if="$ctrl.states.heros.reloading">
Refreshing...
</p>
// Example stolen from the AngularJS documentation
angular
.module('myUserListComponent', ['sf.load'])
.component('heroList', {
template: `path/to/template.html`,
controller: HeroListController
});
function HeroListController(sfLoadService, herosService) {
var ctrl = this;
ctrl.deleteHero = deleteHero;
activate();
function activate() {
sfLoadService.loadState($scope, {
heros: herosService.list(),
categories: herosService.getCategories(),
}).then(({ heros, categories }) => {
ctrl.heros = heros;
ctrl.categories = categories;
});
}
function deleteHero(hero) {
sfLoadService.runState(
$scope,
'delete:' + hero._id,
herosService.delete(hero._id)
);
}
}
You can also see real world usage here.
FAQs
> Manage AngularJS scope load.
The npm package angular-sf-load receives a total of 1 weekly downloads. As such, angular-sf-load popularity was classified as not popular.
We found that angular-sf-load 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.