Category Archives: AngularJS

Datavisualization with Angular and d3 on the Twitter Stream API

ngTopheman

It’s been a few months since I wanted to make a data visualization project based on Angular and d3. The one thing that was missing was some data to work with …

I tried to find something that fit me on open-data sites but I was unsuccessful. I finally had the idea to use the Twitter Stream API, which would get me lots of data to process and moreover, in realtime …

To handle the tweets post-processing part, I built a node module : twitter-stream-channels that I plugged to socket.io and express to send processed data from the Twitter Stream API to the frontend via the node server.

Finally on my Angular app, I made a service that handles the transport/persistance layer to share the realtime data collected from the websockets to the d3 directive. All of them are home made and responsive.

I was looking for a project where I could train myself mixing Angular and d3 … I ended up doing a little more backend thant I thought 😉 …

Tophe

Try Topheman Datavisual

PS : See the README on the github repository of the project for further informations about the implementation.

Topheman Cycle Infos

I wanted to make a real AngularJS app (something more than the usual todolist we’ve all done 😉 ), so all I needed was to finish my ongoing personal projects and find an idea of an app that I could focus on the frontend part. This is how I came with Topheman Cycle Infos.

If you browse the source code or the README, you’ll see that I followed the Yeoman workflow, in order to master multiple tools such as :

  • yeoman / grunt / bower stack
  • sass / bootstrap (I wanted to checkout the bootstrap framework – not so fond of it …)
  • google maps API (I got some expertise, making Topheman Street View)
  • deploy to heroku (a part we dont talk enough : the deployment of a NodeJS app)
  • i18n (not really a tool, but I wanted the app in multiple languages – thanks to angular-translate)

This app will tell you the availability of bikes and bike’s stands of the bike’s JCDecaux network in real time in any of their towns.

Try Topheman Cycle Infos

For the deployment to heroku of a yeoman fullstack based project, I invite you to checked out Creating Apps with Angular and Node using Yeoman.

Tophe

Disclaimer : The design is responsive (it would work on a tablet or mobile), but showing the map of the bike’s stations of Paris may slow down your mobile browser (this is a too many markers problem that I am aware of, but sadly, it would make no sense to cluster them nor take cpu time to process which markers to show or hide). Maybe when I’ll have more time I’ll fix this bug.