├── README.md ├── getAllNodePackageNames.js └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # naïveScript 2 | naïveScript is perfect for the everyday JavaScript developer (with too much availabe harddrive space) 3 | 4 | To get it running check out the repository and type 5 | > npm install 6 | 7 | ## Notice 8 | 1. The name of this repository is not correct, since GitHub wouldn't allow the "ï" character in the repo name. 9 | 2. naïveScript will solve all of your problems, since it contains everything you'll ever need! 10 | 3. Don't use this! 11 | 4. Use this on your own risk! 12 | 13 | ## FAQ 14 | Q: Isn't this sarcasm? 15 | A: Yes'nt! 16 | 17 | ``` 18 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 19 | Version 2, December 2004 20 | 21 | Everyone is permitted to copy and distribute verbatim or modified 22 | copies of this license document, and changing it is allowed as long 23 | as the name is changed. 24 | 25 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 26 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 27 | 28 | 0. You just DO WHAT THE FUCK YOU WANT TO. 29 | ``` 30 | -------------------------------------------------------------------------------- /getAllNodePackageNames.js: -------------------------------------------------------------------------------- 1 | var writeFile = require('write'); 2 | let names = require("all-the-package-names"); 3 | 4 | let processedNames; 5 | names.forEach(function(name){ 6 | processedNames += '"' + name + '": "latest",\n' 7 | }); 8 | 9 | writeFile('packagenames.txt', processedNames, function(err) { 10 | if (err) console.log(err); 11 | }); 12 | --------------------------------------------------------------------------------