Astrology Random Message Generator

Thanks for coming to share your portfolio Project with other learners!

When posting your project for review, please be sure to include the following:

  • Your review of the Project. Was it easy, difficult, just right? This project was pretty difficult at first, but once I found my footing it turned out to be pretty simple

  • An estimate of how long it took you to complete; took me about 2-4 hours to complete.

  • The link to your code repo: https://github.com/mattyspice666/Random-Message-Generator

We hope you enjoyed this project!

1 Like

Hello!

Some advices:

  1. To start new project with npm use npm init -y command. It will generate template for package.json file.
  2. Before release your project remove unnecessary dependencies from package.json.
  3. Do not include node_modules/ folder in git repo. Use .gitignore file to exclude it, see Git - gitignore Documentation . Also you can use excelent tool to generate .gtignore: gitignore.io - Create Useful .gitignore Files For Your Project
  4. Do not use hardcoded array size like in lines 128-133. Use Array.length to determine size of array instead, see JavaScript Array length Property This will help you if size of arrays will change in future.

Good work!

1 Like