
Security News
New CNA Scorecard Tool Ranks CVE Data Quality Across the Ecosystem
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Fwew, the powerful Na'vi dictionary search API, made accessible as an npm package written in TypeScript.
Install fwew.js with your favorite package manager:
npm install fwew.js
yarn add fwew.js
pnpm add fwew.js
bun install fwew.js
import { fwew } from 'fwew.js'
// async/await
async function demoFwew() {
const results = await fwew('kaltxì')
console.log(results)
}
// promise
fwew('kaltxì').then((results) => {
console.log(results)
})
import { fwewReverse } from 'fwew.js'
// async/await
async function demoFwewReverse() {
const results = await fwewReverse('en', 'hello')
console.log(results)
}
// promise
fwewReverse('en', 'hello').then((results) => {
console.log(results)
})
import { search } from 'fwew.js'
// async/await
async function demoSearch() {
const result = await search('en', 'kaltxì hello')
console.log(result)
}
// promise
search('en', 'kaltxì hello').then((results) => {
console.log(results)
})
import { list } from 'fwew.js'
// async/await
async function demoList() {
const results = await list('word starts tì and pos is n.')
console.log(results)
}
// promise
list('word starts tì and pos is n.').then((results) => {
console.log(results)
})
import { random } from 'fwew.js'
// async/await
async function demoRandom() {
const results = await random(8, 'pos is vtr.')
console.log(results)
}
// promise
random(8, 'pos is vtr.').then((results) => {
console.log(results)
})
import { naviToNumber } from 'fwew.js'
// async/await
async function demoNaviToNumber() {
const result = await naviToNumber('mevopey')
console.log(result)
}
// promise
naviToNumber('mevopey').then((result) => {
console.log(result)
})
import { numberToNavi } from 'fwew.js'
// async/await
async function demoNumberToNavi() {
const result = await numberToNavi(42)
console.log(result)
}
// promise
numberToNavi(42).then((result) => {
console.log(result)
})
import { nameAlu, nameFull, nameSingle } from 'fwew.js'
// async/await
export async function demoNameAlu() {
const names = await nameAlu('10', '3', 'normal noun', 'any', 'forest')
console.log(names)
}
export async function demoNameFull() {
const names = await nameFull("'ite", '10', '3', '2', '2', 'forest')
console.log(names)
}
export async function demoNameSingle() {
const names = await nameSingle('10', '2', 'reef')
console.log(names)
}
// promise
nameAlu('10', '3', 'normal noun', 'any', 'forest').then((names) => {
console.log(names)
})
nameFull("'ite", '10', '3', '2', '2', 'forest').then((names) => {
console.log(names)
})
nameSingle('10', '2', 'reef').then((names) => {
console.log(names)
})
FAQs
JavaScript wrapper for the Fwew Na'vi Dictionary API written in TypeScript
The npm package fwew.js receives a total of 0 weekly downloads. As such, fwew.js popularity was classified as not popular.
We found that fwew.js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.