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.
@createnextapp/react-barcode
Advanced tools
React component to generate Barcode.
react-barcode is available on npm. It can be installed with the following command:
npm install --save @createnextapp/react-barcode
react-barcode is available on yarn as well. It can be installed with the following command:
yarn add @createnextapp/react-barcode
import React from 'react';
import { useBarcode } from '@createnextapp/react-barcode';
function App() {
const { inputRef } = useBarcode({
value: 'createnextapp',
options: {
background: '#ccffff',
}
});
return <svg ref={inputRef} />;
};
export default App;
import React from 'react';
import { useBarcode } from '@createnextapp/react-barcode';
function App() {
const { inputRef } = useBarcode({
value: 'createnextapp',
options: {
displayValue: false,
background: '#ffc0cb',
}
});
return <canvas ref={inputRef} />;
};
export default App;
import React from 'react';
import { useBarcode } from '@createnextapp/react-barcode';
function App() {
const { inputRef } = useBarcode({
value: 'createnextapp',
options: {
background: '#ffff00',
}
});
return <img ref={inputRef} />;
};
export default App;
Prop | Type | Require | Description |
---|---|---|---|
value | string | ✔️ | Text to generate. |
options | options | ❌ | Barcode options. |
Option | Type | Default | Require | Description |
---|---|---|---|---|
format | string? | auto | ❌ | Select which barcode type to use. Please check the wikipage of the different barcode types for more information. |
width | number? | 2 | ❌ | The width option is the width of a single bar. |
height | number? | 100 | ❌ | The height of the barcode. |
displayValue | boolean? | true | ❌ | |
text | string? | undefined | ❌ | Overide the text that is diplayed |
fontOptions | string? | "" | ❌ | With fontOptions you can add bold or italic text to the barcode. |
font | string? | "monospace" | ❌ | Define the font used for the text in the generated barcode. This can be any default font or a font defined by a @font-face rule. |
textAlign | string? | "center" | ❌ | Set the horizontal alignment of the text. Can be left / center / right . |
textPosition | string? | "bottom" | ❌ | Set the vertical position of the text. Can be bottom / top . |
textMargin | number? | 2 | ❌ | Set the vertical position of the text. Can be bottom / top . |
fontSize | number? | 20 | ❌ | Set the size of the text. |
background | string? | "#ffffff" | ❌ | Set the background of the barcode. |
lineColor | string? | "#000000" | ❌ | Set the color of the bars and the text. |
margin | number? | 10 | ❌ | Set the space margin around the barcode. If nothing else is set, all side will inherit the margins property but can be replaced if you want to set them separably. |
marginTop | number? | undefined | ❌ | |
marginBottom | number? | undefined | ❌ | |
marginLeft | number? | undefined | ❌ | |
marginRight | number? | undefined | ❌ | |
flat | boolean? | false | ❌ | Only for EAN8 / EAN13 |
If you think any of the react-barcode
can be improved, please do open a PR with any updates and submit any issues. Also, I will continue to improve this, so you might want to watch/star this repository to revisit.
We'd love to have your helping hand on contributions to react-barcode
by forking and sending a pull request!
Your contributions are heartily ♡ welcome, recognized and appreciated. (✿◠‿◠)
How to contribute:
FAQs
A React component to generate Barcode.
The npm package @createnextapp/react-barcode receives a total of 345 weekly downloads. As such, @createnextapp/react-barcode popularity was classified as not popular.
We found that @createnextapp/react-barcode 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.