0

This might seem a little lazy, but is there any service online that will collect javascript from diverse URLs I could provide and collate them together into one minified file? It would just be easier and more reliable than copy pasting a bunch of different files into one document manually. Again, I admit it's lazy, but I was just wondering..

Thanks!

1252748
  • 14,597
  • 32
  • 109
  • 229
  • 4
    `wget` them and them pass them into `uglifyjs` or Google's Closure Compiler. – Blender Apr 29 '13 at 06:21
  • ^^`wget http://code.jquery.com/jquery-1.9.1.js | uglifyjs -m -c -o minified.js` – elclanrs Apr 29 '13 at 06:23
  • 1
    have a look over it http://jscompress.com/ – Hariharan Apr 29 '13 at 06:24
  • not for the lazy ones, but i prefere to setup a grunt project where you can combining different files, doing a `jslint`on all and then doing minification. the problem with online services is that they could go away ;) and then you need to start searching again for a new service. – t.niese Apr 29 '13 at 06:24
  • @Hariharan Ah, how could I have missed that upload files button. Very careless. Thanks so much! – 1252748 Apr 29 '13 at 06:30
  • Great ti help you. As well as refer CodeKit too. Did my answer helps you @thomas? please make upvote to help other to find as correct anwser too @thomas – Hariharan Apr 29 '13 at 06:33
  • This library could possible help in managing groups of resources like that https://nuget.org/packages/RxLoader/ – Razor Jun 23 '13 at 02:19

0 Answers0