I am looking for way to convert single page Angular Application to old style html-css-javascript static files, which runs on my pc without any set-up of complicated node.js or any npm
What I was looking for and came to Angular is, I was heavily looking for Bootstrap-sidebar with lightweight css and js but all the examples I could find had large, big size of Javascript files, so I saw Angular had some novel implementation of Sidebar.
I want to convert the Angular sidebar(Angular application) to old style HTML, css and js files so that I can run them without any complex node server.
Is there any way to get the javascript, css and html out of Angular application. I heard of WebPack but did not tried, so any suggestion would be appreciated.
If the above process can be done in React suggest me a solid way to do that.
Edit: What I want is, I want to access the file as file://path/to/index.html I do not want HTTP (http://localhost/index.html)
ng buildcommand), you will get anindex.htmland some JavaScript files.index.htmlfile do not run or does not render anything justwhiteorblankpage in my browserindex.htmlover HTTP (http://localhost, notfile://path/to/index.html), then the JavaScript code should populateindex.html. Also, scully.io may be of interest to you.file://path/to/index.htmlnothing HTTP (http://localhost) - is there any way to do that?