CountryDB
Country and region codes DB for node.js.
Usage
// JSON database is always stored in `countrydb.db` and it's// at the moment the only provided member of `countrydb`.var db = db; // DB maps two-letter country codes to an object having name// and regions. The following will list all country codes and// their names.for var k in db console; // The following code lists all states in USA.var regions = dbUSregions;for var k in regions console;