Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there already a javascript function/library/snippet written for the validation of the RFC 1738 URL specifications listed at http://www.ietf.org/rfc/rfc3986.txt?
From http://code.google.com/p/google-caja/source/browse/trunk/src/com/google/caja/plugin/uri.js
Implements RFC 3986 for parsing/formatting URIs.
You can find usage examples in the unit tests.
No, but I've written an article that covers the related RFC-3986 (which updates 1738):
Regular Expression URI Validation
I've set up the article so that you can double-click on any of the regexes to get a correctly formatted snippet for a variety of languages.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Are there any code standards/style guide checkers for JavaScript?
Basically, the equivalent of PHP_CodeSniffer, but for JavaScript.
There is an open source one called jscs, no experience with it though:
https://github.com/mdevils/node-jscs
It offers NPM (node.js) and Grunt packages for download.
Google JSLint, JSHint. Those are somewhat subjective though, especially JSLint.
Personally, I would recommend JSHint because it's community maintained. Also it has node.js-based CLI tools for code validation.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Hello i would like to check if ALL features of HTML5, CSS3 and Javascript are supported in my browser before redirecting the user to the application itself, i have seen some references to Modernizr but even after reading their documentation i can't make heads or tails of how to use it.
I just want a simple function that returns a boolean after the check has been made. Is there any sort of function like that out there somewhere?
Life (and browser compatibility) is more complicated than a single boolean.
Use Modernizr, then make sure all the specific features you actually need are supported and do your redirect, for example:
if(Modernizr.geolocation && Modernizr.boxshadow/* whatever else ...*/) {...}
You tagged your question as 'php' - but reliable feature detection can only run on the client side. If you want this info on the server you can run the tests client side and then pass the interesting results in a cookie or something similar.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm working on a web project that uses Django, jQuery and Google App Engine.
I need an option to parse raw, human readable date texts into JavaScript Date objects.
I found this library - http://code.google.com/p/parsedatetime/ which will allow me to parse strings such as "tomorrow at noon" or "in 5 minuts" to epoch time. The drawback is that its a python library, thus requiring me to use AJAX to send a request to convert the string for me to the server.
Is there a JavaScript library that will allow for a similar functionality that I can use to parse the string on the client-side?
Thanks
Try this: http://www.datejs.com/
Checkout moment.js: http://momentjs.com/docs/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a php implementation of the Stanford Javascript Crypto Library?
I don't think there's a port of this specific library, but you can use mcrypt and hash and openssl extensions to achieve same results.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
After reading
http://www.pragprog.com/magazines/2010-03/javascript-its-not-just-for-browsers-any-more
I'm wondering which is the best IDE to develop server-side javascript applications?
I want a nice development environment with commonjs and node etc. Preferably windows but anything is interesting really. Is there any IDE with some nifty refactoring tools, maybe some intellisense-like function, etc etc.. Or is it notepad++ ftw?
I use Aptana 1.5 its very similar to eclipse which I use # my work every day