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.
ANSI syntax highlighting for the terminal.
This package wraps lowlight
to output ANSI syntax
highlighting instead of HTML.
It can support 190+ programming languages.
This package is useful when you want to display code on a terminal.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install emphasize
In Deno with esm.sh
:
import {all, common, createEmphasize} from 'https://esm.sh/emphasize@7'
In browsers with esm.sh
:
<script type="module">
import {all, common, createEmphasize} from 'https://esm.sh/emphasize@7?bundle'
</script>
Say example.css
looks as follows:
@font-face {
font-family: Alpha;
src: url('Bravo.otf');
}
body, .charlie, #delta {
color: #bada55;
background-color: rgba(33, 33, 33, 0.33);
font-family: "Alpha", sans-serif;
}
@import url(echo.css);
@media print {
a[href^=http]::after {
content: attr(href)
}
}
…and example.js
contains the following:
import fs from 'node:fs/promises'
import {emphasize} from 'emphasize'
const doc = String(await fs.readFile('example.css'))
const output = emphasize.highlightAuto(doc).value
console.log(output)
…now running node example.js
yields:
\x1B[32m@font-face\x1B[39m {
\x1B[33mfont-family\x1B[39m: Alpha;
\x1B[33msrc\x1B[39m: \x1B[31murl\x1B[39m(\x1B[36m'Bravo.otf'\x1B[39m);
}
\x1B[32mbody\x1B[39m, \x1B[34m.charlie\x1B[39m, \x1B[34m#delta\x1B[39m {
\x1B[33mcolor\x1B[39m: \x1B[36m#bada55\x1B[39m;
\x1B[33mbackground-color\x1B[39m: \x1B[31mrgba\x1B[39m(\x1B[36m33\x1B[39m, \x1B[36m33\x1B[39m, \x1B[36m33\x1B[39m, \x1B[36m0.33\x1B[39m);
\x1B[33mfont-family\x1B[39m: \x1B[36m"Alpha"\x1B[39m, sans-serif;
}
\x1B[32m@import\x1B[39m url(echo.css);
\x1B[32m@media\x1B[39m print {
\x1B[32ma\x1B[39m\x1B[35m[href^=http]\x1B[39m\x1B[35m::after\x1B[39m {
\x1B[33mcontent\x1B[39m: \x1B[31mattr\x1B[39m(href)
}
}
…which looks as follows:
This package exports the identifiers
all
,
common
,
and createEmphasize
.
There is no default export.
It exports the TypeScript types
AutoOptions
,
LanguageFn
,
Result
,
Sheet
,
and Style
.
all
Map of all (±190) grammars (Record<string, LanguageFn>
).
See all
from lowlight
.
common
Map of common (37) grammars (Record<string, LanguageFn>
).
See common
from lowlight
.
createEmphasize(grammars?)
Create a emphasize
instance.
grammars
(Record<string, LanguageFn>
, optional)
— grammars to addEmphasize (emphasize
).
emphasize.highlight(language, value[, options])
Highlight value
(code) as language
(name).
language
(string
)
— programming language namevalue
(string
)
— code to highlightsheet
(Sheet
, optional)
— style sheetemphasize.highlightAuto(value[, options])
Highlight value
(code) and guess its programming language.
value
(string
)
— code to highlightoptions
(AutoOptions
or Sheet
,
optional)
— configuration or style sheetemphasize.listLanguages()
List registered languages.
emphasize.register(grammars)
Register languages.
See lowlight.register
.
emphasize.registerAlias(aliases)
Register aliases.
emphasize.registered(aliasOrLanguage)
Check whether an alias or name is registered.
See lowlight.registered
.
AutoOptions
Configuration for highlightAuto
(TypeScript type).
sheet
(Sheet
, optional)
— sheetsubset
(Array<string>
, default: all registered languages)
— list of allowed languagesLanguageFn
Highlight.js grammar (TypeScript type).
Result
Result (TypeScript type).
language
(string
or undefined
)
— detected programming language.relevance
(number
or undefined
)
— how sure lowlight
is that the given code is in the languagevalue
(string
)
— highlighted codeSheet
Map highlight.js
classes to styles functions
(TypeScript type).
The hljs-
prefix must not be used in those classes.
The “descendant selector” (a space) is supported.
For convenience chalk’s chaining of styles is suggested. An abbreviated example is as follows:
{
'comment': chalk.gray,
'meta meta-string': chalk.cyan,
'meta keyword': chalk.magenta,
'emphasis': chalk.italic,
'strong': chalk.bold,
'formula': chalk.inverse
}
type Sheet = Record<string, Style>
Style
Color something (TypeScript type).
value
(string
)
— inputOutput (string
).
This projects is compatible with maintained versions of Node.js.
When we cut a new major release,
we drop support for unmaintained versions of Node.
This means we try to keep the current release line,
emphasize@7
,
compatible with Node.js 16.
This package is safe.
Yes please! See How to Contribute to Open Source.
FAQs
ANSI syntax highlighting for the terminal
The npm package emphasize receives a total of 76,227 weekly downloads. As such, emphasize popularity was classified as popular.
We found that emphasize 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 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.