-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Star Wars Characters Script | ||
|
||
## Project Description | ||
|
||
This project provides a Node.js script that retrieves and prints the characters of a Star Wars movie using the Star Wars API. The script takes a Movie ID as input and displays the character names in the same order as they appear in the movie's data. | ||
|
||
## Requirements | ||
|
||
- Ubuntu 20.04 LTS | ||
- Node.js (Version 10.14.x) | ||
- Semi-Standard style compliance with semicolons (AirBnB style reference) | ||
- Request module | ||
|
||
## Installation | ||
|
||
### Install Node.js (Version 10) | ||
|
||
If Node.js is not already installed on your system, you can follow the provided instructions to install Node.js version 10: | ||
|
||
```bash | ||
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - | ||
$ sudo apt-get install -y nodejs | ||
|
||
## Install Semi-Standard | ||
To ensure code compliance with the Semi-Standard style, install the semistandard module globally: | ||
|
||
$ sudo npm install semistandard --global | ||
|