How to use plunker codes in my applications?

0

I've been an Oracle professional for 12 years and I'm starting web development with AngularJS.

I searched the internet for "login screen angularJs" and got to the plunker with your model: link

p>

Obviously, I got carried away and downloaded the source code and to my disappointment, it did not work in my browsers.

The question is: Why ?! If the code is the same that appears in the plunker, what is missing for it to work?

    
asked by anonymous 02.03.2017 / 09:26

1 answer

1

You need a server to run AngularJS.

A very simple option is NodeJS, through its module link .

Installation:

To install globally enter: npm install -g http-server .

Execution:

Enter the project directory and run with http-server -o .

The -o parameter opens the browser on the main page of the project.

    
02.03.2017 / 12:36