Open source infrastructure for data import
Explore the docs Β»
View Demo
Β·
Report Bug
Β·
Request Feature
Table of Contents
All projects need to give some kind of data import facility, so that their users can import data in application through files like .csv
, .xls
, .xlsx
, etc.
At first it looks like just importing file and inserting in database, but as the app grows facilities like validating data, data mapping, becomes must. impler
provides infrastructure to applications, so that they don't have to write code for data import.
To set up impler.io
locally, you need the following things installed in your computer.
pnpm
localstack
mongodb
Follow these steps to setup the project locally,
- Clone the repo,
git clone https://github.com/knovator/impler.io
. - Install the dependencies,
pnpm install
. - Do setups for projects by running,
pnpm setup:project
. - Start the application,
pnpm start:dev
. - Start interacting with API by visiting
http://localhost:3000/api
or see demo onhttp://localhost:5173
.
After doing setup, you can easily make call to the impler
through Swagger UI provided at http://localhost:3000/api
,
- Create
project
by calling/v1/project
API, and Copy_id
from the response. - Create
template
by calling/v1/template/{projectId}
API, and Copy_id
from the response. - Update
columns
for template by calling/v1/column/{templateId}
API.
If you're running impler
locally, after adding-schema you can start interacting with import widget from http://localhost:5173
.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.
Knovator - @knovator
Project Link: https://github.com/knovator/impler.io