Notes and examples for learning the basics of software development, and starting developing a web application using the most modern and popular programming languages and tools.
Get familiar with the key notions of software programming, by reading the topics in the WIKI section (https://github.com/hurrikam/sowa-programming-school/wiki).
Clone this repository on your machine, either using the git
command line tool or by downloading GitHub Desktop at https://desktop.github.com/.
Once you've cloned the repo on your machine:
- open a
shell
on Linux/macOs, or acommand prompt
in Windows, and execute: - go to the folder containing the repo with
cd folder/containing/the/repo
. - install the libraries required by the project by typing
npm install
(or justnpm i
)
To try the test web page:
- open a
shell
on Linux/macOs, or acommand prompt
in Windows, and execute: - go to the folder containing the repo with
cd folder/containing/the/repo
. - type
npm start
to start the test web server - Open your web browser and navigate to http://localhost to display the test page.