Javascript Activity Tracker#1
Conversation
MkrtichSargsyan
left a comment
There was a problem hiding this comment.
Status: Changes Requested ♻️
Hello Janluc Saneaux Rivera
To Highlight 🎉
- You added validation for the form
- You could add color to each project
However, there are some changes that you need to make in order to get your project approved
-
Kindly add main branch
-
You should have a screenshot in the readme file
-
You should be able to delete a project, after refreshing it again appears
-
Project should be separated into modules.
Example of a module is const Module = (()=> { const func1 = () => {}; const func2 = () => {}; return {func1, func2}; } )() -
Necessary run common commands like build, development should be in package.json inside `scripts'.screenshot
Here is a basic example"scripts": { "dev": "webpack --mode development", "build": "webpack --mode production", "start": "webpack-dev-server --mode development --open" // optional }, -
User can view all projects
-
User can edit the details of a to-do item
Please, make the REQUIRED changes and submit your request again! 😀
Good luck.
ps: . If you have any questions about my review or need help, you can message me on slack ( @MkrtichSargsyan )
| - Clone or download repository to local machine | ||
| - Run 'npm install' in the terminal to install the packages. | ||
| - Run 'npm run build' to build with webpack. | ||
| - Run 'npn run start' to open the site in your browser. |
There was a problem hiding this comment.
Kindly add the start script to package.json or remove this line
Microverse Project: Javascript To Do