# just-args **Repository Path**: mirrors_WebReflection/just-args ## Basic Information - **Project Name**: just-args - **Description**: Just a cleaned up process.argv - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README just-args ========= really, nothing special, just a cleaned up process.argv // usage var args = require('just-args'); // C:\\folder\node.exe file.js a b c // ~/node/bin/node file.js a b c // node file.js a b c // ./file.js a b c console.log(args); // ['a', 'b', 'c']