Angular 2 Form with file upload to file system, image path stored to Mongo. Project is built using the MEA2N/MEAN2 stack. This project could be used as an angular2-seed.
- Resize the image client-side in order to reduce bandwidth of the server.
- Edit users in admin area
This project was generated with angular-cli version 1.0.0-beta.21.
The goal of this project is to submit a form with one file upload and two text fields. The form is submitted to back end, the file is stored in the uploads/forms/:userID
and then the file name (string) is stored in MongoDB among the two text fields. At the end, the form ID is assinged to the signed in user ID (via Ref) for later viewing all the form fields and file in the front end. User profile image is stored at uploads/profiles/:userID
.
##Prerequisites
- MongoDB installed and running (http://mongodb.org)
- Node.js and NPM installed (http://nodejs.org)
- ImageMagick or GraphicsMagick installed, more info in gm page on how to install depending your Operating System. If installing ImageMagick on Windows, please check "Install Legacy Utitities (e.g. convert") during installation otherwise node will report errors.
- User login/signup using JSON Web Token (jwt)
- User password reset via email (nodemailer & SendGrid)
- Toastr Notifications (& Error Handling)
- Multipart form submission with image preview before upload (some of the upload logic is taken from primeng ui).
- Storing images to file system
- Storing image path to MongoDB among text fields
- Triple check if image is actually a file by checking it's mime type in both back end and in front end (
gm
in back end checks if file is an image too by reading first bytes of the file, need to fix this to not allow form to be submitted at all) - Double check for the image size in both back end and front end, file limit now is 5.000.000 bytes (5MB)
- Image resize server side using GraphicsMagick
- Form deletion among the file from filesystem, user forms array is updated too.
- Edit form, user can edit the text inputs and the image or update only the image or update only the text fields.
- Admin area, admin can edit or delete all forms in database
- User Profile area, user can upload a profile picture, change his password, view profile info like email, user id, role and joined date
Angular-cli v1.0.0-beta.21
Angular v2.2.4
Webpack
Node v6.9.1
MongoDB v3.2.10
Mongoose v4.7.1
Express v4.14.0
angular2-jwt v0.1.25
(only for checking the expiration date of the jwt token and the user role (admin or user))
jsonwebtoken v7.1.9
Multer v1.2.0
ng2-toastr v1.3.2
ng2-progress-bar 0.0.5
gm v1.23.0
BootStrap 3
(css is included in assets
folder)
Font Awesome
(css is included in assets
folder)
Glyphicons
(found in fonts
folder under assets
)
- Clone this repo from Git
- Run
npm install
in your command line. - Edit
config.js
in/server/config
folder. - Run
node seed.js
to insert the admin user into database. Admin email istest@test.com
and password istestpass
. Make sure mongod is running. - After login navigate to
localhost:3000/#/admin
to access admin panel.
Run ng build
A new dist
folder will be created with all files needed to run the Angular 2 app in front end.
If you want to make changes on the Angular2 app and auto-refresh the dist
folder then run the following command in your terminal:
ng build --watch
Run npm start
If you want to make changes on the Server and auto refresh the back end code then run: nodemon npm start
. If you don't have nodemon installed, run npm install nodemon -g
.
Open your favourite web browser and point to http://localhost:3000
Enjoy!
To get more help on the angular-cli
use ng --help
or go check out the Angular-CLI README.