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.
mdjsx-loader
Advanced tools
A markdown loader with embedded jsx
We wanted an expressive way to write markdown documentation for a react style-guide.
Add this loader to your preferred filetypes. We use the .md
extension.
// In webpack.config.js
module.exports = {
/* Omitted */
module: {
loaders: [
{
test: /\.md$/,
loaders: ['babel', 'mdjsx']
}
]
}
}
Notice the dependency on the
babel
loader. That is because themdjsx
loader creates an es6 module with jsx syntax.
mdjsx-loader
exports two values.
import Component, { attributes } from 'my-md-file.md';
Component // a react component which includes the compiled markdown and react components
attributes // the front-matter attributes from the markdown file
$imports
special front-matter attributes allows you to import any javascript module
---
$imports:
'{ A, B }': 'module1'
'* as C': 'module2'
D: 'module3'
---
### My title
Use imported react components
<A>
<D />
<C.X>
Hello there
</C.X>
</A>
$attributes
special variable gives you access to all front-matter attributes (except for the $imports)
---
propA: 'Hello World'
---
### My title
Use front-matter attributes
<span>{$attributes.propA}</span>
$props
special variable gives you access to the component props.
in md file
# Hello world
<span>{$props.content}</span>
consumer
import Component from 'my-md-file.md';
import ReactDom from 'react-dom';
ReactDom.render(
document.getElementById('root'),
<Component content="This will be interpolated in span" />
)
FAQs
> A markdown loader with embedded jsx
We found that mdjsx-loader 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.