Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukeb06/aa0-hello-world
https://github.com/lukeb06/aa0-hello-world
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lukeb06/aa0-hello-world
- Owner: lukeb06
- Created: 2024-07-07T19:18:49.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-07T19:25:32.000Z (6 months ago)
- Last Synced: 2024-07-07T20:38:55.368Z (6 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello World!
Welcome to an App Academy coding project!
Anytime that you open a coding project, run the following command to install
dependencies:```sh
npm install
```Then, follow the prompts in the block of instructions at the top of every
problem file in the __/problems__ folder of the project.To run your code in a problem file, run the following command in your terminal
and replace `` with the name of the problem file:```sh
node problems/.js
```For example, to run the first problem file in the __/problems__ folder, run the
following command in your terminal:```sh
node problems/01-console-log.js
```To test your code in a problem file with the given test specifications, run the
following command in your terminal and replace `` with the
name of the problem file:```sh
npm test test/-spec.js
```For example, to test the first problem file in the __/problems__ folder, run the
following command in your terminal:```sh
npm test test/01-console-log-spec.js
```To run all tests, use this command:
```sh
npm test
```You know you are done with this coding project when all tests pass with green
check marks in your terminal!Have fun coding! 😊