Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am using Node.js...
Personally, I'm not a fan of SQL. What I do like is JSON, and I would like to be able to store my server data as JSON.
Even though it's possible to just JSON.parse and .stringify the process, I get the impression that doing this is a bad idea for large-scale applications.
Also, it would be nice if the database library could be just a library, and not a server like with MySQL.
Any suggestions on where to find said library would be much appreciated.
Availability of said library on NPM would be brilliant.
I use low db befor for small nodejs projects. Its easy to use. See documentation.
Have fun.
https://www.npmjs.com/package/lowdb
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Most libraries, it seems, do not support easy use in browsers. Isn't there a reliable JSON Schema validator library which I can load into my browser just as easily as many other libraries?
It would be extra great if it was available as a Node.js module for the back-end. I just want to check some schemas. Does anyone know if this exists anywhere?
I thank you in advance.
You can find a list of JSON Schema implementations here. If you know of others, please open an issue or pull request!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Hello I'm looking for a freeware or cheap server where I can set up a RESTful webservice with database and php.
Does anyone suggest me a good one?
Thanks!
https://www.firebase.com/features.html
FireBase is a great option (I recommend this one). you can do authentication (g+, Twitter,Facebook, password based and anonymous), Realtime Database and hosting.
the free teir is pretty good, but it can get expensive.
http://www.couchbase.com/nosql-databases/couchbase-server
You can also use CouchBase server but you need to do a lot of set ups for it. its free!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have been running around here and there on NoSQL big data storage technologies. The greatest hurdle I have found so far is a good visualization tool. With out that, it seems so hard to understand how data is being kept in the storage. This would be a generalized question but I would need to know which NoSQL storage technologies either comes with a visualization tool or an open source contribution that has been proven to be great. The tool shows nodes,database tables and entries as well.
I hope people who have experience against would share their hard earned knowledge.
Thank you for the guidance.
Have you tried Neo4j. It has got visualization tool developed on top of eclipse code base.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I've been doing a lot of sproc programming in MySQL lately.
And I must say that I like it. A lot.
However debugging these babies sucks.
Anyone know of any tools that can put some happiness in My MySQL debugging?
http://www.mydebugger.com/
There is a limited free version, but the full version is not too expensive either.
Here is screenshot:
Have you considered using
https://github.com/hepabolu/mytap
For unit testing the db you should have something native that works in MySQL.
For Unit Testing, you can try this:
http://stk.wikidot.com/stk-unit
If you pefer writing your test in C++ you can use googletest:
https://code.google.com/p/googletest/
You can find a good overview on the mySQL documentation webside:
http://dev.mysql.com/doc/mysqltest/2.0/en/unit-tests-google-test.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I've seen it used a couple places:
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/
http://developer.yahoo.com/flash/astra-flash/classreference/
Is this just a coincidence or is it somewhere I can grab? I'd love to use it for a new project I'm working on.
Thanks!
Take a look at asdoc. It's what the documentation is automatically generated with.
The most used standard for documenting ActionScript is javadoc, which is a pool of tags to comment your code. Theese information is extracted and turned into some sort of documentation, eg html pages.
To extract theese information there is a number of tools available. ASDoc is a command line tool. Another tool is Ortelius, that comes with a simple GUI that might be a little less "scary" for GUI junkies like me.