Reputation: 1801
Can we run angular without build step?
By just using CDN. without angular cli.
And have external dependencies of libraries as CDN.
Upvotes: 1
Views: 832
Reputation: 30088
No. Angular apps are written in Typescript, and the "build step" compiles the Typescript to JavaScript.
Web browsers run JavaScript, not Typescript. So the "build step" is required.
Upvotes: 2