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.
pdf-parser-client-side
Advanced tools
A lightweight easy to use package to parse text from PDF files on client side without any server dependency.
A lightweight easy to use package to parse text from PDF files on client side without any server dependency.
Use npm or yarn to install this npm package
npm i pdf-parser-client-side
or
yarn add pdf-parser-client-side
Include the package
import extractTextFromPDF from "pdf-parser-client-side";
variant
ParameterThe variant
parameter is used to specify the type of text extraction and replacement to be performed on the extractedText
. Depending on the value of the variant
parameter, different types of characters will be removed or retained.
variant Value | Description | Regular Expression | Retained Characters |
---|---|---|---|
clean | Removes all non-ASCII characters and any spaces that follow them. | `/[^\x00-\x7F]+\ *(?:[^\x00-\x7F] | )*/g` |
alphanumeric | Retains only alphanumeric characters (letters and numbers). | /[^a-zA-Z0-9]+/g | A-Z, a-z, 0-9 |
alphanumericwithspace | Retains alphanumeric characters and spaces. | /[^a-zA-Z0-9 ]+/g | A-Z, a-z, 0-9, space |
alphanumericwithspaceandpunctuation | Retains alphanumeric characters, spaces, and basic punctuation marks (.,!?,). | /[^a-zA-Z0-9 .,!?]+/g | A-Z, a-z, 0-9, space, .,!? |
alphanumericwithspaceandpunctuationandnewline | Retains alphanumeric characters, spaces, basic punctuation marks (.,!?), and newlines. | /[^a-zA-Z0-9 .,!?]+/g | A-Z, a-z, 0-9, space, .,!? |
Javascript
import React from "react";
import extractTextFromPDF from "pdf-parser-client-side";
export default function Test() {
const handleFileChange = async (e, variant) => {
const file = e.target.files?.[0];
if (file) {
try {
const text = await extractTextFromPDF(file, variant);
console.log("Extracted Text:", text);
} catch (error) {
console.error("Error extracting text from PDF:", error);
}
}
};
return (
<div>
<input
type="file"
name=""
id="file-selector"
accept=".pdf"
onChange={(e) => handleFileChange(e, "clean")}
/>
</div>
);
}
Typescript
import React from "react";
import extractTextFromPDF, { Variant } from "pdf-parser-client-side";
export default function Test() {
const handleFileChange = async (
e: React.ChangeEvent<HTMLInputElement>,
variant: Variant
) => {
const file = e.target.files?.[0];
if (file) {
try {
const text = await extractTextFromPDF(file, variant);
console.log("Extracted Text:", text);
} catch (error) {
console.error("Error extracting text from PDF:", error);
}
}
};
return (
<div>
<input
type="file"
name=""
id="file-selector"
accept=".pdf"
onChange={(e) => handleFileChange(e, "clean")}
/>
</div>
);
}
Feel free to contribute!
FAQs
A lightweight easy to use package to parse text from PDF files on client side without any server dependency.
The npm package pdf-parser-client-side receives a total of 245 weekly downloads. As such, pdf-parser-client-side popularity was classified as not popular.
We found that pdf-parser-client-side demonstrated a healthy version release cadence and project activity because the last version was released less than 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.