
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
JavaScript wrapper for the Fwew Na'vi Dictionary API written in TypeScript
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 32 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.