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.
papago-translate
Advanced tools
A Node.js NPM package for using Naver Papago easily (papago.naver.com).
Papago-translate is an efficient easy-to-use translator using Naver Papago.
Node.js 16.11.x or higher is recommended.
(Made on Node.js v18.10.0)
npm i discord.js
Importing library
const { Papago } = require("papago-translate");
const client = new Papago();
Example: Translate from Korean to English:
client.translate({
from: "ko",
to: "en",
text: "빈민가에 사는 쓸모없는 골칫덩이, 그라티아."
}).then((response) => {
console.log(response.result.translation);
}).catch(console.error);
// -> Gratia, a useless nuisance living in a slum.
Example: Detect Language of the text:
client.detectLanguage("빈민가에 사는 쓸모없는 골칫덩이, 그라티아.")
.then(console.log).catch(console.error);
// -> { error: false, result: "ko", valid: true }
Example: Get information about single word or multiple words.
client.define({
from: "ko",
to: "en",
text: "줄거리"
}).then(console.log).catch(console.error);
// -> { error: false, result: { is_word: true, examples: [...], items: [ {...} ] } };
client.define({
from: "en",
to: "ko",
text: "Organic Plot"
}).then(console.log).catch(console.error);
// -> { error: false, result: { is_word: false, examples: [], items: [ {...}, {...} ] } }
You can find documentation here!
For any issue or contribution, please check the GitHub repository here!
FAQs
A Node.js NPM package for using Naver Papago easily (papago.naver.com).
We found that papago-translate 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
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.