Resources to help in making a web analytics tool [closed] - javascript

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
I have a moderate experience with Ruby on Rails, PHP, SQL an NoSQL databases and CoffeeScript.
I want to build a web analytics tool for people in my country for their local websites, that will also have a main page of top site ranks.
In the beginning I am not asking out of myself to have something as powerful as Piwik or GA, but I want to make a good start. I know I will have to use JavaScript, that is good, I will also need a server-side processing part, but I don't know how to efficiently put these parts together.
I would love to hear about a book about such topic, but I don't think there is one. If possible, please recommend materials and subjects I need to master to make out my plan. Maybe some aids that can help me too.

Why not go through how Piwik use its tracker? It is open-source, so all sources are available.
Might be a good place to start!
Piwik github

Related

Latest Single Page Application framework [closed]

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
please help me to find out what is the latest framework that fit for developing single page application. Thanks in advance.
Please be more specific when asking questions. :)
If your goal is to augment web-based applications with model–view–controller (MVC) capability,then I recommend you to use Angular js or Backbone js.
You can use Angular js http://angularjs.org/ .AngularJS is an open-source JavaScript MVC framework.
This tutorial http://www.revillweb.com/tutorials/angularjs-in-30-minutes-angularjs-tutorial/ is very good for beginners and it's very easy.
And Backbone js http://backbonejs.org/ is also a good framework.Backbone.js gives structure to web applications by providing models.this http://arturadib.com/hello-backbonejs/ tutorial is also a good one for starters.
If you are struggling to choose any framework please read this article http://readwrite.com/2014/02/06/angular-backbone-ember-best-javascript-framework-for-you#awesm=~oymdu8WAUkUbdV

premade XSS prevention Libraries for Javascript and PHP [closed]

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
I have gone through many articles of SO and Googled a lot but could not find some good premade libraries to prevent XSS (Cross Side Scripting) with Javascript for Node.js and PHP for Apache. I have found a lot of codes to prevent but isn't there some good libraries already available just include and use it?
php-antixss
htmLawed
HTML Purifier
xss_clean.php filter
XSS Protect
HTML XSS Filter
You can check it out Mod Security (kinda Module)
can be libraries, first go through their docs. But I would suggest you to use your own code for better prevention against such attacks.
It is essentially possible to automatically prevent XSS attacks, since one little line in the code written by the end-user (the developer using such a theoretical library) can open up an attack.
It isn't possible write such a library, you just have to be careful.
If it is a high priority project, the only thing you can really do is be careful and get a third-party security audit from a trusted source (though those usually cost several thousand and the low-end).

Which Framework do i use for checking on confirmed transaction on Bitcoin Blockchain? [closed]

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
I'm writing a small gambling site where you can gamble with bitcoins.
As on the large currency exchange sites i want the user to log in. He then can create a new bitcoin address and send a amount of coins to that address.
When the transaction is six times confirmed the site should know about this status and give the user the sent amount of money on the site.
Now my question ist: Which Framework do i use.
The site will be written in Node.js. I have experience in working with the Blockchain Websocket API, but i think it is not reliable enough, so i looked into bitcoinjs.
What do you guys think? Which Framework is the best for determine these things?
Unless you are planning to use blockchain.info as your casino's wallet, I would stay away from their (or any other external) wallet management services, APIs, etc.
The traditional way of interfacing with bitcoin is by running bitcoind on your server, which is a fully fledged bitcoin client (and would need a full copy of the blockchain, so prepare for a big download there). You can communicate with it through its JSON RPC and it will keep track of different wallets/addresses you have & their balances, as well make payments when that is necessary.
That said, there appears to be a native nodejs bitcoind alternative ("bitcoinjs" that you mentioned as well) which would probably be easier to set up. My personal recommendation would be against using an unofficial/alternative implementation. Bitcoind is bitcoin, you can't go wrong with it. Bitcoinjs is far more likely to have bugs than bitcoind, and will presumably be behind bitcoind on updates, which are sometimes crucial.
Here's a getting-started-in-PHP tutorial. I know you aren't going to use PHP, but the principles are all the same. Hope it helps.

Database in cloud with REST API and ACL [closed]

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 database, which can meet the following requirements
hosted in cloud
REST API
support for different API keys with different access rights (especially Read-Only)
free pricing program
I looking for database for Javascript application, without my own middle layer as provider between database and client application.
you have a lot of choices but still you can use free license for development
you can try those
https://parse.com (its very good one and they have a lot of libraries almost for programming language)
"http://couchdb.apache.org" (this is very good choice if you want to build local DB with JSON response )

Are there any full stack server side javascript frameworks available? [closed]

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
I see that javascript is becoming more and more practical as a server side language with the advent of node.js and v8. As far as frameworks go, most of what I've seen are minimalistic frameworks. Even express.js, one of the more promising ones, is a little bare.
Are there any full stack server-side frameworks out there for JS yet?
There's RingoJS, the current form of the (surprisingly old) Helma framework. It's a Rhino-based implementation, so you can get whatever you want from the JVM (sort-of a "good news/bad news" joke I guess).
Check out towerjs and railwayjs.
There is a very powerful webapp stack called ringojs. It is actually a Rhino prompt that you can use to run javascript modules. It is based on Jetty and features a well designed set of modules and a powerful but simple template engine (including inheritence and macros). You can reuse the galaxy of Java libraries out there throught simple Javascript-Java interop. Coming from J2EE development I threw out a lot of ceremony code and configuration - it is very productive, especially tweaking your running webapp throught the prompt

Categories