https://github.com/jstutorials/nodejs_image_upload_and_store_mysql
This nodejs app use to upload and store image into mysql database table.
https://github.com/jstutorials/nodejs_image_upload_and_store_mysql
Last synced: about 1 year ago
JSON representation
This nodejs app use to upload and store image into mysql database table.
- Host: GitHub
- URL: https://github.com/jstutorials/nodejs_image_upload_and_store_mysql
- Owner: jstutorials
- Created: 2017-03-05T17:14:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-13T05:11:37.000Z (almost 9 years ago)
- Last Synced: 2025-01-14T07:47:43.739Z (about 1 year ago)
- Language: HTML
- Homepage: http://www.js-tutorials.com/javascript-tutorial/nodejs-example-upload-store-image-mysql-express-js/
- Size: 105 KB
- Stars: 5
- Watchers: 0
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nodejs image upload example
This nodejs app use to upload and store image into mysql database, stroing image into folder using MIME stream and image path into database table.
# Create db and table
Create 'test' name database into mysql.
Run user.sql file to create user table into 'test' database.
# Configure nodejs application
Copy all files of this git repo into 'c:/project_folder' and run below command
c:/project_folder> npm install
# Run node js application server
c:/project_folder> node app.js
# Test nodejs application
open http://project_name:8080 on browser.