diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..c4cf81f --- /dev/null +++ b/.npmignore @@ -0,0 +1,44 @@ +# Logs +logs +*.log +npm-debug.log* + +# Runtime data +pids +*.pid +*.seed + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules +jspm_packages + +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history + +# ignore files created by vim +*.swp +*.*~ + +# only want to host screenshots on github +screenshots diff --git a/README.md b/README.md index a8df2d8..c971837 100644 --- a/README.md +++ b/README.md @@ -11,16 +11,16 @@ A utility to quickly pivot data given rows and/or columns to pivot on. ## What it does Say you have this example data set: -![example data](http://imgur.com/GysbXmx) +![example data](/screenshots/ss1.png) With this tool you can pivot the data given a particular row and column category: -![example pivot 1](http://imgur.com/NTHGU6t) +![example pivot 1](/screenshots/ss2.png) Or given multiple rows and a column category: -![example pivot 1](http://imgur.com/02TtZTD) +![example pivot 2](/screenshots/ss3.png) Or multiple columns and a row category: -![example pivot 1](http://imgur.com/jeeFXS4) +![example pivot 3](/screenshots/ss4.png) Or any other combination of rows and/or columns diff --git a/screenshots/ss1.png b/screenshots/ss1.png new file mode 100644 index 0000000..c7acf2b Binary files /dev/null and b/screenshots/ss1.png differ diff --git a/screenshots/ss2.png b/screenshots/ss2.png new file mode 100644 index 0000000..608e84a Binary files /dev/null and b/screenshots/ss2.png differ diff --git a/screenshots/ss3.png b/screenshots/ss3.png new file mode 100644 index 0000000..4ad3f91 Binary files /dev/null and b/screenshots/ss3.png differ diff --git a/screenshots/ss4.png b/screenshots/ss4.png new file mode 100644 index 0000000..7571c70 Binary files /dev/null and b/screenshots/ss4.png differ