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-odometer-js
Advanced tools
Angular.JS directive for Hubspot odometer.
Copyright (C) 2014, Sebastian Wallin sebastian.wallin@gmail.com
bower install angular-odometer-js --save
npm install angular-odometer-js --save
Include angular-odometer.js
in your application, as well as the odometer.js
and the default theme CSS file
<script src="components/odometer/odometer.js"></script>
<script src="components/angular-odometer/dist/angular-odometer.js"></script>
<link rel="stylesheet" href="components/odometer/themes/odometer-theme-minimal.css"/>
Add the module ui.odometer
as a dependency to your app:
var app = angular.module('app', ['ui.odometer']);
Then use the directive on a tag of choice tag and it will convert it to a odometer for you. Examples:
<span odometer="'5'">
<span odometer="visitors">
<span odometer="visitors" odometer-options="{theme: 'digital', duration: 3000}">
The options that are sent along to Odometer can be set either
directly in the directive as seen above with odometer-options
hash or configured as default parameters via the odometerOptionsProvider
:
angular.module('ui.odometer').config([
'odometerOptionsProvider', function(odometerOptionsProvider) {
odometerOptionsProvider.defaults = {
duration : 3000,
theme : 'digital'
};
}
]);
All the available options can be seen over at the Odometer docs
MIT
FAQs
Angular.JS wrapper for Hubspot Odometer
The npm package angular-odometer-js receives a total of 28 weekly downloads. As such, angular-odometer-js popularity was classified as not popular.
We found that angular-odometer-js 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.