
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@geraldcloudnine/bbcode-to-react
Advanced tools
A utility for turning raw BBCode into React elements. (forked - https://www.npmjs.com/package/bbcode-to-react)
A utility for turning raw BBCode into React elements.
Install bbcode-to-react and peer dependencies via NPM
npm install --save bbcode-to-react react
Import bbcode-to-react, example:
import React from 'react';
import parser from 'bbcode-to-react';
import { renderToString } from 'react-dom/server';
const Example = (props) => {
return (
<p>{parser.toReact('[b]strong[/b]')}</p>
);
}
// render: <p><strong>strong</strong></p>
console.log(renderToString(<Example />));
import React from 'react';
import parser, { Tag } from 'bbcode-to-react';
class YoutubeTag extends Tag {
toReact() {
// using this.getContent(true) to get it's inner raw text.
const attributes = {
src: this.getContent(true),
width: this.params.width || 420,
height: this.params.height || 315,
};
return (
<iframe
{...attributes}
frameBorder="0"
allowFullScreen
/>
);
}
}
class BoldTag extends Tag {
toReact() {
// using this.getComponents() to get children components.
return (
<b>{this.getComponents()}</b>
);
}
}
parser.registerTag('youtube', YoutubeTag); // add new tag
parser.registerTag('b', BoldTag); // replace exists tag
const Example = (props) => {
return (
<p>{parser.toReact('[youtube width="400"]https://www.youtube.com/embed/AB6RjNeDII0[/youtube]')}</p>
);
}
Install dependencies:
npm install
Run examples at http://localhost:8080/ with webpack dev server:
npm start
Run tests & coverage report:
npm test
Watch tests:
npm run test-watch
bbcode-to-react uses the parser from bbcodejs, so much of the credit is due there.bbcode-to-react uses the webpack config and publish scripts from reactstrap.FAQs
A utility for turning raw BBCode into React elements. (forked - https://www.npmjs.com/package/bbcode-to-react)
The npm package @geraldcloudnine/bbcode-to-react receives a total of 3 weekly downloads. As such, @geraldcloudnine/bbcode-to-react popularity was classified as not popular.
We found that @geraldcloudnine/bbcode-to-react 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.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.