Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
angular-unicornify
Advanced tools
Angular ready directives and a service for unicornifying your site. The two directives included are `unicornify-me` and `unicornify-clear` and the service is injectable as `UnicornifyService`.
angular-unicornify
Angular ready directives and a service for unicornifying your site. The two directives included are unicornify-me
and unicornify-clear
and the service is injectable as UnicornifyService
.
import { UnicornifyModule } from "angular-unicornify";
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, UnicornifyModule],
bootstrap: [AppComponent]
})
export class AppModule { }
import { UnicornifyService } from "angular-unicornify";
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
constructor(readonly unicorns: UnicornifyService) {
}
}
<div class="cornify">
<span class="corns" unicornify-me>🦄</span>
<span class="corns-clear" unicornify-clear>🗑️</span>
<span>{{ unicorns.count }}</span>
</div>
export class AppComponent {
constructor(readonly unicorns: UnicornifyService) {
}
}
add
: () => void
- 🦄remove
: () => void
- remove all unicornscount
: number
- how many unicorns?Big thanks to:
FAQs
Easily add 🦄's to your Angular site. Includes two directives and a service for unicornifying your site. The two directives included are `unicornify-me` and `unicornify-clear` and the service is injectable as `UnicornifyService`.
The npm package angular-unicornify receives a total of 3 weekly downloads. As such, angular-unicornify popularity was classified as not popular.
We found that angular-unicornify 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.