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.
@omnedia/ngx-cryptic-text
Advanced tools
@omnedia/ngx-cryptic-text
is an Angular library that provides a cryptic text animation effect. The component animates text by randomly switching letters until the correct characters appear, creating a mysterious or glitchy effect that can be used for titles, headings, or any text content in your Angular applications.
Install the library using npm:
npm install @omnedia/ngx-cryptic-text
Import the NgxCrypticTextComponent in your Angular module or component:
import { NgxCrypticTextComponent } from '@omnedia/ngx-cryptic-text';
@Component({
...
imports: [
...
NgxCrypticTextComponent,
],
...
})
Use the component in your template:
<om-cryptic-text
[text]="'Hello, World!'"
[animationSpeed]="1000"
styleClass="custom-cryptic-class"
></om-cryptic-text>
<om-cryptic-text
[text]="text"
[animationSpeed]="animationSpeed"
styleClass="your-custom-class"
>
</om-cryptic-text>
text
(required): The target text to be revealed by the animation.animationSpeed
(optional): The duration of the entire animation in milliseconds. Defaults to 800ms.styleClass
(optional): A custom CSS class to apply to the text element for styling.<om-cryptic-text
[text]="'Cryptic Text Effect!'"
[animationSpeed]="1200"
styleClass="cryptic-text-style"
></om-cryptic-text>
This will create a cryptic text animation where the text "Cryptic Text Effect!" is gradually revealed over a duration of 1200ms.
You can apply custom styles to the text using the styleClass input. For example:
.cryptic-text-style {
font-size: 24px;
color: #ff69b4;
font-family: 'Courier New', Courier, monospace;
}
This will style the cryptic text with a custom font size, color, and font family.
Contributions are welcome. Please submit a pull request or open an issue to discuss your ideas.
This project is licensed under the MIT License.
FAQs
A simple component library to animate text.
We found that @omnedia/ngx-cryptic-text demonstrated a healthy version release cadence and project activity because the last version was released less than 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.