Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
TEACHING-MATERIALS-1/00 Setup.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
98 lines (59 sloc)
4.3 KB
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
# The Goorm IDE | |
This is a good example of an online IDE. These enable you to do software development without needing to install anything on your computer. They are also ideal for use with a Chromebook. You need to sign up for an account on [their website](https://ide.goorm.io/), sign in and access the dashboard page. Click on the **Create a New Container** button. | |
![Create a New Container](exercises/.images/goorm01.png) | |
You will be presented with a screen where you can name your project and choose a software stack: | |
![Create a New Container](exercises/.images/goorm02.png) | |
You should see an IDE that displays the files down the left side with an editor in the main view and a terminal window below: | |
![Create a New Container](exercises/.images/goorm03.png) | |
## Cloning the Lab Content | |
The next step is to clone the repository containing the lab materials into the IDE. Start by opening the [GitHub page](https://github.coventry.ac.uk/340CT-1819SEPJAN/TEACHING-MATERIALS). Locate the **Clone or download** button, clicking this pops open a small window as shown. Copy the URL in this window to your clipboard. | |
![Create a New Container](exercises/.images/github01.png) | |
Returning to the IDE, run the following command in the terminal: | |
```shell | |
git clone https://github.coventry.ac.uk/340CT-1819SEPJAN/TEACHING-MATERIALS.git labs | |
``` | |
This creates a `labs/` directory containing all the files from the repository. | |
By default real-time linting is enabled however this currently uses an old linter and is not ECMA6 compatible. You should disable real-time linting from the **Project** menu. | |
## Updating NodeJS | |
We can see the current version of NodeJS by running the `node -v` command. The latest version is 10.11.0 and so we need to upgrade this. | |
Start by installing the Node Version Manager tool: | |
```shell | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash | |
``` | |
Now click on the small blue oval on the terminal tab to reload the shell. There are lots of versions available, use the `nvm list-remote` command to see these. Install the latest using `nvm install 10.11.0` substituting the latest version number. To check the version installed use `node -v` again. | |
## Running an Express Server | |
Use the terminal to navigate to the `simple_templating` directory and try running the `index.js` script: | |
```shell | |
$ cd labs/exercises/01_nodejs/01_templates_forms/simple_templating | |
$ node index.js | |
Error: Cannot find module 'express' | |
``` | |
Notice you get an error, we need to install the missing module using the _Node Package Manager_ tool. We can then try to run the script again: | |
```shell | |
$ npm install express | |
$ node index.js | |
Error: Cannot find module 'express-handlebars' | |
``` | |
We get a different error explaining that there is another missing module: | |
```shell | |
$ npm install express-handlebars | |
$ node index.js | |
app listening on port 8080 | |
``` | |
Now we have the server up and running so the final task is to view the web page using the web browser. | |
![Setting up a URL and port](exercises/.images/goorm04.png) | |
This will open a window where you will need to register a new URL and port: | |
![Setting up a URL and port](exercises/.images/goorm05.png) | |
1. Use your **University Username** as the URL segment. | |
2. Make sure you specify port **8080** (this is the one used by your server). | |
You need to set this up as your **run** configuration as shown. | |
![Setting up a URL and port](exercises/.images/goorm06.png) | |
The final step is to open a new browser window and enter your chosen URL, you don't need to specify the port, this was done through port-forwarding: | |
![Setting up a URL and port](exercises/.images/simple_template.png) | |
If you make changes to the code or want to quit the IDE you will need to stop the server. To do this, select the terminal window and press ctrl+c. | |
## Git Configuration | |
Before you can work with Git you need to update the repository configuration. Follow the instructions below: | |
1. Update your name (this must be the name as it appears on your ID badge) using `git config user.name 'Joe Bloggs'`. | |
2. Update your email (using your unversity email) `git config user.email 'bloggsj@uni.coventry.ac.uk'` | |
3. Update your commandline editor choice using `git config core.editor nano` (the editor must be installed!) | |
4. Cache your credential (username/password) for an hour using `git config credential.helper 'cache --timeout=3600'` |