
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
angular-typing-animation
Advanced tools
angular-typing-animation
$ npm install angular-typing-animation --save
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { AppComponent } from './app.component';
import { TypingAnimationDirective } from 'angular-typing-animation'
@NgModule({
imports: [
BrowserModule
],
declarations: [
AppComponent
TypingAnimationDirective
],
bootstrap: [AppComponent]
})
export class AppModule {}
<span typingAnimation [typeSpeed]="20" [startDelay]="2000" (complete)="onComplete()">
</span>
For a full example, please check out this plunker example
/**
* @property {number} typeSpeed, type speed in milliseconds
*/
typeSpeed: 0,
/**
* @property {number} startDelay, time before typing starts in milliseconds
*/
startDelay: 0,
/**
* @property {boolean} condition, required condition for typing begin
*/
condition: true,
/**
* @property {boolean} hideCursorOnComplete, hide cursor on typing complete
*/
hideCursorOnComplete: false,
/**
* All typing is complete
* @event TypingAnimation#complete
*/
complete: () => {},
This is an fork from the javascript library Typed.js created for www.mattboldt.com
FAQs
Angular 4 typing animation directive
The npm package angular-typing-animation receives a total of 54 weekly downloads. As such, angular-typing-animation popularity was classified as not popular.
We found that angular-typing-animation 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 look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.