Categories
couchdb nodejs

Working with NodeJS, CouchDB and Express Framework

This is a simple example of using node.js, nano (couch db modules) and the express framework to retrieve some data from a couch instance. Setting up the modules We will be using a couch instance from www.iriscouch.com. The database will be named “employees”. var nano = require(‘nano’)(‘http://lugomatic.iriscouch.com’); var db = nano.use(’employees’); We need to include […]

Categories
couchdb html5 javascript jquery jquery mobile mobile

Share URL Mobile Web App

The purpose of this web app was to group links based on a basecamp project. The app is utilized internally to have people test out the links on their mobile devices. We used to use http://sitetophone.com/ to upload a link and share it. This became a pain because you had to login and then find […]