Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
angular-bluebird-promises
Advanced tools
This is a drop in replacement for $q that makes the bluebird API compatible with angulars subset of $q then simply swaps it out.
With this module you can use all of bluebirds additional promise methods on the $q service, the full list can be found here:
http://bluebirdjs.com/docs/api-reference.html
The library depends on angularJS and Bluebird.
It is recommended that you install the library and its dependencies through bower:
bower install --save angular-bluebird-promises
You will then need to include the JS files for the plugin:
<script src="bower_components/bluebird/js/browser/bluebird.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-bluebird-promises/dist/angular-bluebird-promises.min.js">
And finally add the module dependency in your AngularJS app:
angular.module('myApp', ['mwl.bluebird']);
Alternatively you can install through npm:
npm install --save angular-bluebird-promises
Then add as a dependency to your app:
angular.module('myApp', [require('angular-bluebird-promises')]);
Simply use $q as you normally would. It will function exactly as before, however you will now have bluebirds additional API methods available as well on all promises throughout your angular app.
By default the value of onPossiblyUnhandledRejection is set to angular.noop. You can and should override this with your own handler in order to catch uncaught errors. For example:
angular.module('mwl.bluebird').run(function($q, $log) {
$q.onPossiblyUnhandledRejection(function(err) {
$log.warn('Unhandled rejection', err);
});
});
If using the ui-router this will produce some noise. To get around this you can do something like:
$q.onPossiblyUnhandledRejection(function(exception) {
if (exception.message.match(/transition (superseded|prevented|aborted|failed)/)) {
return;
}
// Handle exception
});
angular.module('mwl.example', ['mwl.bluebird']).run(function($q, $http) {
var promises = [
$http.get('test/angular.json'),
$http.get('test/bluebird.json')
];
//Note the use of spread which isn't available normally on $q
$q.all(promises).spread(function(angular, bluebird) {
console.info('\\m/ It worked! \\m/', angular.data.name, bluebird.data.name);
}).catch(console.error);
});
npm install
while current directory is this repoRun npm run build
to build the project files in the dist folder
Run npm start
to start a development server with auto reload that will also run unit tests
The MIT License
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.
1.0.2 (2016-08-30)
<a name="1.0.1"></a>
<a name="1.0.0"></a>
FAQs
Replaces $q with bluebirds promise API
The npm package angular-bluebird-promises receives a total of 178 weekly downloads. As such, angular-bluebird-promises popularity was classified as not popular.
We found that angular-bluebird-promises 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.