
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
ngx-ace-signal
Advanced tools
ngx-ace-signal is a modern Angular signals-based wrapper for the Ace Editor.
It is designed for Angular 20+, supports SSR, and avoids legacy patterns like NgModule, @Input(), or global side effects.
input(), model(), output())AceConfigInterface)Example application (GitHub Pages): 👉 https://ace.webart.work
npm install ngx-ace-signal
<ace [(value)]="code" [mode]="'javascript'" [theme]="'github'"></ace>
code = `console.log("Hello Ace");`;
| Input | Type | Default | Description |
|---|---|---|---|
value | string | "" | Editor content (two-way via model()) |
mode | "text" | "javascript" | string | "" | Editor mode |
theme | "github" | "clouds" | string | "" | Editor theme |
disabled | boolean | false | Disables editor |
readOnly | boolean | false | Read-only mode |
config | AceConfigInterface | undefined | Advanced Ace options |
useAceClass | boolean | true | Toggles .ace host class |
<ace (change)="onChange($event)" (focus)="onFocus()" (blur)="onBlur()"></ace>
Supported events:
blurfocuscopypastechangechangeCursorchangeSessionchangeSelection<div ace [mode]="'text'" [theme]="'clouds'" [config]="options">
initial text
</div>
Access the editor API via template reference:
<div ace #editor="ngxAce"></div>
editor.ace()?.setValue("Hello");
Use provideAce() to define defaults once:
import { provideAce } from "ngx-ace-signal";
bootstrapApplication(AppComponent, {
providers: [
provideAce({
showLineNumbers: true,
useWorker: false,
}),
],
});
You can extend supported modes/themes without touching the library:
import { registerAceMode, registerAceTheme } from "ngx-ace-signal";
registerAceMode("json", () => import("ace-builds/src-noconflict/mode-json"));
registerAceTheme(
"monokai",
() => import("ace-builds/src-noconflict/theme-monokai")
);
Then use them normally:
<ace mode="json" theme="monokai"></ace>
isPlatformBrowserNo special setup required.
All supported options are defined in:
AceConfigInterface;
This is a thin typed layer over Ace’s native configuration. For full option details, see the official Ace documentation:
ace-builds is CommonJS.
Consumer apps should add:
"allowedCommonJsDependencies": ["ace-builds"]
This is expected and documented.
MIT © Web Art Work
FAQs
Angular signal library for Ace
We found that ngx-ace-signal demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.