Skip to content

raphamorim/cldr-data-downloader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cldr-data-downloader

A Node.js download tool for Unicode CLDR JSON data.

Usage

$ npm install cldr-data-downloader

$ node <<EOF
cldrDownloader = require("cldr-data-downloader");
cldrDownloader(
  "http://www.unicode.org/Public/cldr/26/json.zip",
  "./cldr",
  function(error) {
    if (error) {
      console.error("Whops", error.message);
      exit(1);
    }
    console.log("Done");
  }
);
EOF

GET `http://www.unicode.org/Public/cldr/26/json.zip`
  [========================================] 100% 0.0s
Received 3425K total.

Unpacking it into ./cldr
Done

License

MIT © Rafael Xavier de Souza

About

Download tool for Unicode CLDR JSON data

Resources

License

Stars

Watchers

Forks

Packages

No packages published