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.
org.webjars.bowergithub.jstroem:ng-input-currency
Advanced tools
Angular directive for formatting inputs as currency fields. This repo is inspired by format-as-currency.
http://jstroem.github.io/ng-input-currency/demo
Install via bower or NPM:
bower install --save ng-input-currency
npm install --save ng-input-currency
<div ng-controller="myController">
<input ng-input-currency ng-model="value" type="text">
</div>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/format-as-currency/format-as-currency.js"></script>
<script>
angular
.module('myModule', ['ngInputCurrency'])
.controller('myController', function ($scope) {
$scope.value = '' // currency input value
});
</script>
var formatAsCurrency = require('ng-input-currency')
angular.module('myModule', [ngInputCurrency])
import * as ngInputCurrency from 'ng-input-currency'
angular.module('myModule', [ngInputCurrency])
var ngInputCurrency = require('ng-input-currency')
angular.module('myModule', [ngInputCurrency])
npm test
Contributions are welcome!
FAQs
WebJar for ng-input-currency
We found that org.webjars.bowergithub.jstroem:ng-input-currency demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.