The Data Doodle

A blog about visualizing, analyzing, and managing data

FDIC SDI Manager

This project provides the ability to interact with DataDoodler and BankerDoodle resources on AWS, including initiating and monitoring the ETL (extract/transform/load) processes.

Source: https://github.com/datadoodler/fdic-sdi-manager.git
NPM: https://www.npmjs.com/package/fdic-sdi-manager

  • This is an ecmascript 2015 (ES6) application that runs on node.js.
  • Will not be using typescript since we will have the luxury of ES6 (even ES7 if we want) syntax already. And with ES6 deconstructions, specifying types as parameters is not as meaningful. All considered, I think typescript would get in the way more than it helps.
  • No UI component in this project. It is intended to be imported to other projects that will provide UI.

Project Setup Checklist

  • Setup git repo on github/datadoodler/fdic-sdi-manager. Include .gitignore and README.md.
  • Create readme file to keep track of steps
  • Setup npm
    • create package.json by running npm init
    • publish to npm repository (login to npmjs.com to insure credentials are present) run npm publish
    • insure publish was successful. The readme should show up at https://www.npmjs.com/package/fdic-sdi-manager
    • this should be an installable package available via npm install fdic-sdi-manager
  • Setup unit testing framework. We will be employing TDD and will need tests to guide our work. This will also asure that we don’t get off-course too badly or code for edge cases that aren’t worth the time spent.
    • Jasmine
    • Wallaby
  • Upate blog (http://datadoodler.github.io/blog/) with pointer to public repo.