Looking for a killer javascript/website monitoring/debug tool [closed] - javascript

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 8 years ago.
Improve this question
I'm looking for a good way of monitoring and logging full exchange between website and the internet.
I know that this can be done with firebug. The main problem I have with it is, that it cannot persist log data over reloads.
Also, if would be very cool to have an ability to log javascript activity and filter the log by the action I'd like to debug (e.g. setting a cookie, change of attribute etc)
Does anyone know something that fits at least some of those requirements, and on the rest performs at least as well as firebug does?

You might want to check out one of the many JavaScript logging utilities, like log4js. You could use it and or something like PantomJS to build automated testing / monitoring of your web applications. The discussion around JavaScript logging on StackOverflow is pretty good too. Check out these questions:
https://stackoverflow.com/questions/1423267/are-there-any-logging-frameworks-for-javascript
A JavaScript frontend logging system that logs to our backend?

You could try fiddler: http://www.fiddler2.com/fiddler2/

Related

Is there a tool, program, extension to prevent and find code repetition in a project? [closed]

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 2 years ago.
Improve this question
I've been looking for a VS Code / Git extension, add-on or anything that can help me prevent but to also identify code that is already repeated so I can abstract it away and reuse it.
You know, maybe even build a library for the darn app but I haven't found anything useful and fresh yet.
There is, but it is not free. WebStorm IDE or any there JetBrains IDE show code repetition and also give you a very good insight into your code. you can try it for free for 30 days and if you liked it then buy it.
WebStorm - The smartest JavaScript IDE
Sonarlint is one of the best tool. It says code duplications and makes sure the code is good shape based on the best practices. You can also add that as a plugin in the VS Code.
SonarCube is the actual product you are looking for, it provide lot more than code duplication details.
Sonar Cube will do following things for you
Code Quality Check, it actually analyses your entire code and provides you information about Bugs and vulnerabilities
it also provides you code coverage on new-code which get pushed
it provides you information and graphs about code coverage, bugs etc.
it provides you information about code duplication

What's the best way to create HTML Live Tiles? [closed]

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 3 years ago.
Improve this question
So basically I would like to create live tiles like windows, which can show things like notifications, time, etc., but I would like to create them in html and javascript. I have all the javascript pieces ready but I wanted to know if it would be wise to use an iframe for every tile because the tiles can be created dynamically and all have their own code. Here I ask myself whether IFrames represent a performance problem or whether I can use them with a clear conscience
is designed to embed an other HTML document.
I don't see any performance problem.
Here is a nice doc at MDN : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
If it is your purpose, why not use them, but maybe are you looking for another approach like web components...?
Hope this helps.

Crawling a website to extract data [closed]

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 8 years ago.
Improve this question
There is a website which contains information we have paid for access to, however the only way available to access the information is through the website and there are 1400 records. So, since there is so much of it, we want to have the information in an excel spreadsheet which is manageable. However, the organization in charge of the website isn't willing to help.
I can write a python script that can parse the html and extract the relevant data, however, the problem is that the site is not easily crawlable because it is an ASP site and many of the "links" are in fact triggers to javascript which loads the destination page. This means that a tool like HTTrack doesn't really work.
Are there any other tools or python modules which can help me do this (bearing in mind the "javascript" links)? I'm totally new to this kind of thing, so I just have no experience of what kinds of things are available to me.
Jython + HtmlUnit may be very usefull in your task.
You can use Scrapy, which is a framework for scraping websites.

what client side javascript cache library would you recommend? [closed]

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'm looking for a client-side javascript cache library
Ideally, this is the feature list I'd like to have
no dependencies
simple
time expiration support
use localStorage if available, and fallback to array
actively developed
I've found a few options, but they don't seem to be particularly active
Related questions at SO are a bit ancient too...
https://github.com/monsur/jscache (this is the most promising one)
http://www.dustindiaz.com/javascript-cache-provider
What JavaScript cache can you recommend
http://sourceforge.net/projects/jsoc/
https://github.com/jeromeetienne/MicroCache.js/blob/master/microcache.js
we made a library for Javascript.
no dependencies
simple
time expiration support
use localStorage and sessionStorage
and it has more features.
you can look from here
https://github.com/giraysam/boomerang-cache
i just made simple js lib for caching. It support array and localStorage
https://github.com/hoangnd25/cacheJS

Faceted search on client side [closed]

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
Can you suggest a basic faceted search library use at client (browser) side.
I quickly looked through exhibit3, but looks heavy for my usage. It mentioned somewhere that exhibit3 can be used on client side alone, but the setup mentioned a backstage project in java.
http://www.simile-widgets.org/exhibit3/examples/nobelists/nobelists.html
Above is an example usage I am looking for (only the category search, no time line view, etc). If it can group data and allow faceted search from json file (independent of backend), that will suit my purpose.
EDIT:
Found a good walk through of one of the exhibit example here.
It pulls lot of dependencies, and wish there a minified version (ready to use :-) ). Anyone uses this for client only solution for relatively medium size data.
facetedsearch.js looks like it would be appropriate. Find it here: http://eikes.github.com/facetedsearch/ or skip the fancy site and go straight to the code: https://github.com/eikes/facetedsearch/

Categories

Resources