├── .angulardoc.json ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-material │ │ └── app-material.module.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ ├── package.json │ └── products │ │ ├── product-form │ │ ├── product-form.component.html │ │ ├── product-form.component.scss │ │ └── product-form.component.ts │ │ ├── product.ts │ │ ├── products-routing.module.ts │ │ ├── products.module.ts │ │ ├── products.service.ts │ │ └── products │ │ ├── products.component.html │ │ ├── products.component.scss │ │ └── products.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.angulardoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/.angulardoc.json -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-material/app-material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/app-material/app-material.module.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/package.json -------------------------------------------------------------------------------- /src/app/products/product-form/product-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/product-form/product-form.component.html -------------------------------------------------------------------------------- /src/app/products/product-form/product-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/product-form/product-form.component.scss -------------------------------------------------------------------------------- /src/app/products/product-form/product-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/product-form/product-form.component.ts -------------------------------------------------------------------------------- /src/app/products/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/product.ts -------------------------------------------------------------------------------- /src/app/products/products-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/products-routing.module.ts -------------------------------------------------------------------------------- /src/app/products/products.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/products.module.ts -------------------------------------------------------------------------------- /src/app/products/products.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/products.service.ts -------------------------------------------------------------------------------- /src/app/products/products/products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/products/products.component.html -------------------------------------------------------------------------------- /src/app/products/products/products.component.scss: -------------------------------------------------------------------------------- 1 | table { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/products/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/app/products/products/products.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/crud-angular-node/HEAD/tslint.json --------------------------------------------------------------------------------