| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A powerful, developer-focused text encoding and security utility library and web application. Zero-dependency core library (suitable for Node.js/Browser) + Premium modern Web Interface.
npm install text-encoderimport { toBase64, md5, defang } from 'text-encoder';
console.log(toBase64('Hello World')); // SGVsbG8gV29ybGQ=
console.log(md5('hello')); // 5d4140...
console.log(defang('http://google.com')); // hXXp://google[.]com# Run directly
npx tsx src/cli.ts base64 "Hello"
npx tsx src/cli.ts hash md5 "secret"
npx tsx src/cli.ts defang "1.1.1.1"
# Or after building
dist/cli.js --helpThe project includes a modern React web application in web/.
cd web
npm install
npm run devBuilt with Vite, React, Tailwind CSS.
ISC
| Back | FazBrowse Home | New Git URL |