
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
ng-event-scope
Advanced tools
Backbone style events in Angular.
This extends the $rootScopeProvider to create a $scope isolate with the $emit and $broadcast methods decorated to split events on :
colons.
Variations on implementation can be found in the $event-scope gist.
ngModule.run(function($rootScope) {
var $scope = $rootScope.$new();
$scope.$on("a:b:c", function(){
console.log(arguments[1], "\t==\t", "$scope.$on(a:b:c)");
});
$scope.$on("a:b*", function(){
console.log(arguments[1], "\t==\t", "$scope.$on(a:b*)");
});
$scope.$on("a*", function(){
console.log(arguments[1], "\t==\t", "$scope.$on(a*)");
});
$rootScope.$on("a:b:c", function() {
console.log(arguments[1], "\t==\t", "$rootScope.$on(a:b:c)");
});
$rootScope.$on("a:b*", function() {
console.log(arguments[1], "\t==\t", "$rootScope.$on(a:b*)");
});
$rootScope.$on("a*", function() {
console.log(arguments[1], "\t==\t", "$rootScope.$on(a*)");
});
$scope.$emit("a:b:c", "$scope.$emit(a:b:c)");
$scope.$broadcast("a:b:c", "$scope.$broadcast(a:b:c)");
$rootScope.$emit("a:b:c", "$rootScope.$emit(a:b:c)");
$rootScope.$broadcast("a:b:c", "$rootScope.$broadcast(a:b:c)");
});
Which outputs—with slightly more text and different tabbing:
$scope.$emit(a:b:c) == $scope.$on(a:b:c)
== $eventScope.$on(a:b:c)
== $scope.$on(a:b*)
== $eventScope.$on(a:b*)
== $scope.$on(a*)
== $eventScope.$on(a*)
$scope.$broadcast(a:b:c) == $scope.$on(a:b:c)
== $scope.$on(a:b*)
== $scope.$on(a*)
$eventScope.$emit(a:b:c) == $eventScope.$on(a:b:c)
== $eventScope.$on(a:b*)
== $eventScope.$on(a*)
$eventScope.$broadcast(a:b:c) == $eventScope.$on(a:b:c)
== $scope.$on(a:b:c)
== $eventScope.$on(a:b*)
== $scope.$on(a:b*)
== $eventScope.$on(a*)
== $scope.$on(a*)
FAQs
Backbone style events in Angular.
We found that ng-event-scope 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.