- 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
356 B
JavaScript
Executable File
17 lines
356 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
var looseEnvify = require('./');
|
|
var fs = require('fs');
|
|
|
|
if (process.argv[2]) {
|
|
fs.createReadStream(process.argv[2], {encoding: 'utf8'})
|
|
.pipe(looseEnvify(process.argv[2]))
|
|
.pipe(process.stdout);
|
|
} else {
|
|
process.stdin.resume()
|
|
process.stdin
|
|
.pipe(looseEnvify(__filename))
|
|
.pipe(process.stdout);
|
|
}
|