Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ngx-highlightjs
Advanced tools
Instant code highlighting directives
Install with NPM
npm i ngx-highlightjs
provideHighlightOptions
to provide highlight.js options in app.config.ts
import { provideHighlightOptions } from 'ngx-highlightjs';
export const appConfig: ApplicationConfig = {
providers: [
provideHighlightOptions({
fullLibraryLoader: () => import('highlight.js')
})
]
};
Note: This includes the entire Highlight.js library with all languages.
You can also opt to load only the core script and the necessary languages.
import { provideHighlightOptions } from 'ngx-highlightjs';
export const appConfig: ApplicationConfig = {
providers: [
provideHighlightOptions({
coreLibraryLoader: () => import('highlight.js/lib/core'),
lineNumbersLoader: () => import('ngx-highlightjs/line-numbers'), // Optional, add line numbers if needed
languages: {
typescript: () => import('highlight.js/lib/languages/typescript'),
css: () => import('highlight.js/lib/languages/css'),
xml: () => import('highlight.js/lib/languages/xml')
},
themePath: 'path-to-theme.css' // Optional, useful for dynamic theme changes
})
]
};
Name | Description |
---|---|
fullLibraryLoader | A function returning a promise to load the entire highlight.js script |
coreLibraryLoader | A function returning a promise to load the core highlight.js script |
lineNumbersLoader | A function returning a promise to load the lineNumbers script for adding line numbers |
languages | The languages to register with Highlight.js (Needed only if you opt to use coreLibraryLoader ) |
config | Set Highlight.js configuration, see configure-options |
lineNumbersOptions | Set line numbers plugin options |
themePath | The path to the CSS file for the highlighting theme |
Dynamic Approach
Set the theme path in the global configuration to enable dynamic theme changes:
providers: [
{
provide: HIGHLIGHT_OPTIONS,
useValue: {
// ...
themePath: 'assets/styles/solarized-dark.css'
}
}
]
Alternatively, import the theme from the app's distribution folder or use a CDN link.
When switching between app themes, call the setTheme(path)
method from the HighlightLoader
service.
import { HighlightLoader } from 'ngx-highlightjs';
export class AppComponent {
private hljsLoader: HighlightLoader = inject(HighlightLoader);
onAppThemeChange(appTheme: 'dark' | 'light') {
this.hljsLoader.setTheme(appTheme === 'dark' ? 'assets/styles/solarized-dark.css' : 'assets/styles/solarized-light.css');
}
}
Traditional Approach
In angular.json
:
"styles": [
"styles.css",
"../node_modules/highlight.js/styles/github.css",
]
Or directly in src/style.scss
:
@import '~highlight.js/styles/github.css';
List of all available themes from highlight.js
To apply code highlighting, use the highlight
directive. It requires setting the target language, with an optional feature to ignore illegal syntax.
import { Highlight } from 'ngx-highlightjs';
@Component({
standalone: true,
selector: 'app-root',
template: `
<pre><code [highlight]="code" language="html"></code></pre>
`,
imports: [Highlight]
})
export class AppComponent {
}
Name | Type | Description |
---|---|---|
[highlight] | string | Code to highlight. |
[language] | string | Parameter must be present and specify the language name or alias of the grammar to be used for highlighting. |
[ignoreIllegals] | boolean | An optional parameter that when true forces highlighting to finish even in case of detecting illegal syntax for the language instead of throwing an exception. |
(highlighted) | HighlightResult | Stream that emits the result object when element is highlighted |
highlightAuto
directiveThe highlightAuto
directive works the same way but automatically detects the language to apply highlighting.
import { HighlightAuto } from 'ngx-highlightjs';
@Component({
selector: 'app-root',
template: `
<pre><code [highlightAuto]="code"></code></pre>
`,
standalone: true,
imports: [HighlightAuto]
})
export class AppComponent {
}
Name | Type | Description |
---|---|---|
[highlightAuto] | string | Accept code string to highlight, default null |
[languages] | string[] | An array of language names and aliases restricting auto detection to only these languages, default: null |
(highlighted) | AutoHighlightResult | Stream that emits the result object when element is highlighted |
lineNumbers
directiveThe lineNumbers
directive extends highlighted code with line numbers. It functions in conjunction with the highlight
and highlightAuto
directives.
import { HighlightAuto } from 'ngx-highlightjs';
import { HighlightLineNumbers } from 'ngx-highlightjs/line-numbers';
@Component({
selector: 'app-root',
template: `
<pre><code [highlightAuto]="code" lineNumbers></code></pre>
`,
standalone: true,
imports: [HighlightAuto, HighlightLineNumbers]
})
export class AppComponent {
}
Name | Type | Description |
---|---|---|
[singleLine] | boolean | Enable plugin for code block with one line, default false . |
[startFrom] | number | Start numbering from a custom value, default 1 . |
During the project build process, you may encounter a warning stating WARNING in ... CommonJS or AMD dependencies can cause optimization bailouts
.
To address this warning, include the following configuration in your angular.json file:
{
"projects": {
"project-name": {
"architect": {
"build": {
"options": {
"allowedCommonJsDependencies": [
"highlight.js"
]
}
}
}
}
}
}
Read more about CommonJS dependencies configuration
This package provides the following features:
To integrate this addon into your project, ensure the presence of HttpClient
by importing it into your main.ts
file.
import { provideHttpClient } from '@angular/common/http';
export const appConfig: ApplicationConfig = {
providers: [
provideHttpClient()
]
};
[gist]
directive, passing the gist ID as its attribute, to retrieve the response through the (gistLoaded)
output event.(gistLoaded)
, gain access to the gist response.gistContent
pipe to extract the file's content from the gist response based on the specified file name.Example:
import { HighlightPlusModule } from 'ngx-highlightjs';
@Component({
selector: 'app-root',
template: `
<pre [gist]="gistId" (gistLoaded)="gist = $event">
<code [highlight]="gist | gistContent: 'main.js'"></code>
</pre>
`,
standalone: true,
imports: [HighlightPlusModule]
})
export class AppComponent {
}
To loop over gist?.files
, use keyvalue
pipe to pass file name into gistContent
pipe.
To highlight all files within a gist, iterate through gist.files
and utilize the keyvalue
pipe to pass the file name into the gistContent
pipe.
Example:
import { HighlightPlusModule } from 'ngx-highlightjs';
@Component({
selector: 'app-root',
template: `
<ng-container [gist]="gistId" (gistLoaded)="gist = $event">
@for (file of gist?.files | keyvalue; track file.key) {
<pre><code [highlight]="gist | gistContent: file.key"></code></pre>
}
</ng-container>
`,
standalone: true,
imports: [HighlightPlusModule, CommonModule]
})
export class AppComponent {
}
Use the pipe codeFromUrl
with the async
pipe to get the code text from a raw URL.
Example:
import { HighlightPlusModule } from 'ngx-highlightjs';
@Component({
selector: 'app-root',
template: `
<pre>
<code [highlight]="codeUrl | codeFromUrl | async"></code>
</pre>
`,
standalone: true,
imports: [HighlightPlusModule, CommonModule]
})
export class AppComponent {
}
The package offers the provideHighlightOptions
function, allowing you to set your clientId
and clientSecret
for the gist HTTP requests.
You can provide these options in your app.config.ts
file as demonstrated below:
import { provideHttpClient } from '@angular/common/http';
import { provideHighlightOptions } from 'ngx-highlightjs/plus'
export const appConfig: ApplicationConfig = {
providers: [
provideHttpClient(),
provideGistOptions({
clientId: 'CLIENT_ID',
clientSecret: 'CLIENT_SECRET'
})
]
};
If you identify any errors in the library, or have an idea for an improvement, please open an issue.
Murhaf Sousli
11.0.0
provideHighlightOptions
function to easily override the default options.provideGistOptions
function in the plus package to easily set gist id and secret into the HTTP requests.startFrom
and singleLine
inputs to lineNumbers
directive, closes #274.codeFromUrl
pipe supports loading of relative URLs, closes #224.highlight
directive which uses a different function and provide different options, closes #275.lineNumbersOptions
property to set the default line number options.highlight
directive to highlightAuto
.highlight.js
original interfaces.highlight.js
was imported externally.highlight
directive now uses a different function from highlight.js which requires selecting a language.highlightAuto
directive automatically detects the language and highlights the code.FAQs
Instant code highlighting, auto-detect language, super easy to use.
The npm package ngx-highlightjs receives a total of 46,312 weekly downloads. As such, ngx-highlightjs popularity was classified as popular.
We found that ngx-highlightjs 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.