I have some JavaScript I want to make available for people to use. The JavaScript project is called, say, Sharp Knife. The key point is that it has a space in it.
How do I name the minified JS file of version 1.0 to be consistent with prevailing conventions?
sharp-knife-1.0.min.jssharp.knife-1.0.min.jssharpknife-1.0.min.js- something else?
Use whatever you prefer. But please don’t use spaces – they are ugly in URLs (and filenames imho)
I’d probably use a CamelCased filename, i.e.
SharpKnife-1.0.min.js