ETA: By "not online tools" do you mean you want something that works locally on your workstation?
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
It also works privately and doesn't save your code anywhere. To be honest, who will need to do it?
Since it runs in browser, it can be used as a standalone desktop or mobile utility
Thanks for explaining.
Perhaps, I'm misunderstanding. It seems that the browser page has numerous external web-based includes. And the script for actually parsing the source code is external?
So, if I enter my source code into the form text area, and click on Minify My Code, my private source code is sent up to your server, which does "something" and returns the result. Is that correct?
Perhaps, I'm misunderstanding. It seems that the browser page has numerous external web-based includes. And the script for actually parsing the source code is external?
So, if I enter my source code into the form text area, and click on Minify My Code, my private source code is sent up to your server, which does "something" and returns the result. Is that correct?
Correct. I would like a utility that does not require the transmission of my code or use of the utility beyond the realm of my local desktop.
Thanks for the suggestions.
You can setup webpack locally too. You won't even need to manually intervene to minify files; you can setup a watch folder.
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
Perhaps, I'm misunderstanding. It seems that the browser page has numerous external web-based includes. And the script for actually parsing the source code is external?
So, if I enter my source code into the form text area, and click on Minify My Code, my private source code is sent up to your server, which does "something" and returns the result. Is that correct?
Yes it is. The key moment there: that's my service. So I know that nobody will steal your code. Somebody else may do it, but not me.
P.S. If I won't be a lazy ass, I'll convert my PHP script into a stand-alone desktop Windows executable.
Comment