- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
17 lines
354 B
JavaScript
Executable File
17 lines
354 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const { resolve } = require("node:path");
|
|
|
|
const script = process.argv.splice(2, 1)[0];
|
|
|
|
if (!script) {
|
|
|
|
console.error("Usage: jiti <path> [...arguments]");
|
|
process.exit(1);
|
|
}
|
|
|
|
const pwd = process.cwd();
|
|
const jiti = require("..")(pwd);
|
|
const resolved = (process.argv[1] = jiti.resolve(resolve(pwd, script)));
|
|
jiti(resolved);
|