Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gurrudev/csv-in-mssql-v2
This is updated version of CSV-IN-MSSQL, the update is about extract the column_name and records automatically and insert in the table
https://github.com/gurrudev/csv-in-mssql-v2
csv ejs express mssql multer nodejs
Last synced: 28 days ago
JSON representation
This is updated version of CSV-IN-MSSQL, the update is about extract the column_name and records automatically and insert in the table
- Host: GitHub
- URL: https://github.com/gurrudev/csv-in-mssql-v2
- Owner: gurrudev
- License: mit
- Created: 2023-04-05T11:47:01.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-06T10:27:40.000Z (almost 2 years ago)
- Last Synced: 2024-11-08T19:48:38.242Z (3 months ago)
- Topics: csv, ejs, express, mssql, multer, nodejs
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CSV-IN-MSSQL
📦Install
```sh
npm install
```💻Usage
```js
// add the config in your index.js
const config = {
user: 'xxxx',
password: 'xxxx',
server: 'xxxx', // e.g. 'localhost'
database: 'xxxx',
options: {
encrypt: true, // For secure connection
trustServerCertificate: true,
}
};
```🚀Start
```sh
npm start
```