Install Angular 4 without CLI
Step 1 : npm init -- This will create a package.json file Step 2 : Copy the content of the below package.json in the created file Step 3 : npm install Step 4: Create Controller , Module ,main.ts ,tsconfig.json,systemjs.config.js,files from the below link Step 5: install http-server --save-dev -- This will add an entry in the package.json file Step 6: http-server -p 8090 -- run the application -- Access the application http:localhost:8090/index.htm Git Link : https://github.com/mazuami/Angular4Structure.git tsconfig.js { "compilerOptions" : { "target" : "es5" , "module" : "commonjs" , "moduleResolution" : "node" , "sourceMap" : true , "emitDecoratorMetadata" : true , "experimentalDecorators" : true , "lib" : [ "es2015" , "dom" ], "noImplicitAny" :...
Comments
Post a Comment