Getting started
On this page, we give the first steps towards a log in system based on Google log
Even though the core idea of the app is numerical analysis, the app is already created, and most likely I will not be able to cover everything. Thus, I have decided to focus on more generic details from the app: one with more specific interesting can access the app on GitHub! Log in system is quite generic, and can be handy if someone wants to create special features, or even say subscription models!

Remember, even thougth we starting from the last feature I have added to the app, and most likely the last one you add too, this is just to keep the course as generic as possible, aftermath I want to sell! Guilty as charged!
Even though most likely I am going to add section priori to that, talking about Angular, I want to treat the section as the first time you meet Angular, I want the parts to be as independent as possible, and more, repeat important concepts is better than leave something imperative untouched.
Creating our first app
From your terminal, just type:
ng new miyagi-do-lab
This command will create a basic app, but fully functional!

Go the folder and type:
npm start

What I just did? you executed a script! Some scripts are standard, therefore, this short notation, others, you must use npm run
: the scripts go in the scripts section of the project package.json
file. It is nice to use npm start
because it is a standard, even for Node.js.

Last updated
Was this helpful?