Skip to content
Analyzes a CSV file and generates database table schema, all within the browser
Branch: master
Clone or download
Latest commit 604cfd7 Apr 28, 2016
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
src
styles
test
vendor
.babelrc
.gitignore init Feb 8, 2016
README.md add tests and linter Apr 26, 2016
index.html
package.json
webpack.config.js

README.md

CSV Schema

Analyzes a CSV file and generates database table schema, all within the browser

screenshot of application

This application parses CSV files (including huge ones) within the browser. It analyzes each field to suggest the best database field type, max length, and whether or not there are any null values. From there, you can rename fields, ignore them, override field types/lengths, etc. and generate database table creation sql for MySQL, MariaDB, Postres, Oracle, or SQLite3.

Development

  • Install dependencies using npm install
  • Run a development server using npm start
  • Run linter and tests using npm test
  • Run a production build using npm run build
  • Deploy the application to surge using npm run deploy

This application uses PapaParse for CSV parsing and Knex.js for SQL query building.

You can’t perform that action at this time.