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.
down-parse
Advanced tools
down-parse is a markdown parser with a wonderful plugin system;
render my markdown:
import { render } from "down-parse";
render(`# hello, world`);
// => <h1>hello, world</h1>
in down-parse, you can write your own plugin to process with Token / AST to change the default output.
such as:
import { render, use } from "down-parse";
use({
// (token: Token) => Token
parser(token) {
// Change The ParaAST's Property To Uppercase.
if (token.type === 'p') {
const { text } = token;
token.text = text.toUpperCase();
}
// Don't Forget Return It.
return token;
},
// (ast: AST, output: string) => string
render(ast, output) {
if (ast.type === 'p') {
return output.replace('WORLD', '😊');
} else {
// Keep Default Output For Other AST.
return output;
}
}
});
const res = render(`
# I ❤️ Plugin
Hello, World
`);
console.log(res);
// => '<br /><h1>I ❤️ Plugin</h1><p>HELLO, 😊</p><br />'
more details see "./src/plugin/type.ts"
you can get your markdown ast by running compile
:
import { compile } from "down-parse";
compile(`# hello, world`);
// => [ { type: '#', weight: 1, text: 'hello, world' } ]
AND you can write yourself the render function to render AST to HTML string. the mapper function from a data structure to a string)
get more details please see ./src/token.ts
for Token
and ./src/compile.ts
for AST
.
MIT
FAQs
markdown parser
The npm package down-parse receives a total of 4 weekly downloads. As such, down-parse popularity was classified as not popular.
We found that down-parse 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
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.