My friend developed a basic Registration page using Angular.js and bootstrap in Visual studio. He sent me the 'log' folder which contains all the dependencies and files related to the project. I don't have visual studio and want to work on the project without the use of visual studio. When I try to Open up the 'index.html' page, its showing everything except the registration form itself. How do I run the page without using Visual Studio?
Asked
Active
Viewed 1,202 times
0
-
do you have node installed? – defaultcheckbox Oct 03 '16 at 20:29
2 Answers
0
You don't need Visual studio to run an Angular app. It's all Javascript and you can run it locally. What I suspect is that your code requires a local server running. If I am correct, then your question is really, how do I get a localserver running?
It's been answered before here: How to create a localhost server to run an AngularJS project
Long and short, install node.
Then
Install: npm install -g http-server
Then
run http-server -o

Community
- 1
- 1

defaultcheckbox
- 739
- 2
- 5
- 16
-
Thank You a lot for that! I'm just beginning to work with MEAN I have installed node, currently. – Bikash Bhagat Oct 24 '16 at 17:46
-
BTW, I tested the app using xampp, it was working nicely . I have just started with Node now. – Bikash Bhagat Oct 24 '16 at 17:49