
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
angular-injector
Advanced tools
This module is meant to solve an annoying problem of minification and dependency injection in Angular.js.
This module is meant to solve an annoying problem of minification and dependency injection in angular.js
. angular-injector
works better and more reliably than ngmin
because it works with any syntax and every possible declaration regardless of where and how it happens.
In order for minified Angular applicaiton to continue working, all functions must be annotated:
someModule.factory('greeter', function($window) {
// ...
});
Must be rewritten as:
someModule.factory('greeter', ['$window', function($window) {
// ...
}]);
This module does that automatically.
Please help me spend more time developing and maintaining awesome modules like this by donating! Just setup Gittip if you haven't already and if you donate $1/week I can buy a coffee on your behalf to keep me coding.
npm install angular-injector
Write your angular functions like so:
someModule.factory('greeter', ng(function($window) {
// ...
}));
Then run them through angular-injector
and it will become:
someModule.factory('greeter', ['$window', function($window) {
// ...
}]);
You don't need to declare ng
function anywhere and it could be customized to anything. If you wanted to get fancy, use something like ƒ
or ∑
to never have any naming conflicts. Or even an emoji if you feeling wild.
This syntax works particularly well in CoffeeScript and is literally 2-3 extra characters:
someModule.factory 'greeter', ng ($window) ->
# ...
opts.token
is a String
, default value ng
. Change it to any other token which suits your style best.
Using the powers of esprima
all function calls to ng
are replaced with array injector notation and the list of dependencies is generated using function arguments. Because actual AST is used, there are no misses.
angular-injector
is available for the following build systems:
npm test
The MIT License (MIT)
Copyright 2014 Alex Gorbatchev
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
This module is meant to solve an annoying problem of minification and dependency injection in Angular.js.
The npm package angular-injector receives a total of 194 weekly downloads. As such, angular-injector popularity was classified as not popular.
We found that angular-injector 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 flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.