├── LICENSE ├── README.md ├── angular-confirmation-dialog ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── components │ │ │ └── shared │ │ │ └── confirmation-dialog │ │ │ ├── confirmation-dialog.component.css │ │ │ ├── confirmation-dialog.component.html │ │ │ ├── confirmation-dialog.component.spec.ts │ │ │ └── confirmation-dialog.component.ts │ ├── assets │ │ └── .gitkeep │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── angular-loader ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ └── shared │ │ │ │ └── loader │ │ │ │ ├── loader.component.css │ │ │ │ ├── loader.component.html │ │ │ │ ├── loader.component.spec.ts │ │ │ │ └── loader.component.ts │ │ ├── interceptors │ │ │ └── loader.interceptor.ts │ │ └── services │ │ │ └── loader.service.ts │ ├── assets │ │ └── .gitkeep │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── angular-local-storage ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── local-storage.service.spec.ts │ │ └── local-storage.service.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── angular-mock-api ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── mock │ │ │ ├── mock.config.ts │ │ │ ├── mock.interceptor.ts │ │ │ └── mock.module.ts │ ├── assets │ │ └── .gitkeep │ ├── browserslist │ ├── environments │ │ ├── environment.mock.ts │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── express-serverless-crud ├── .env ├── .gitignore ├── app-local.js ├── app.js ├── docker-compose.yml ├── employee-table-model.json ├── index.js ├── package-lock.json ├── package.json └── routes.js ├── nodejs-csv-to-json ├── .gitignore ├── package-lock.json ├── package.json ├── read-file.js ├── read-stream.js ├── test-data-output-stream.json └── test-data.csv └── nodejs-json-to-csv ├── .gitignore ├── package-lock.json ├── package.json ├── read-file.js ├── read-stream.js ├── test-data-output-stream.csv ├── test-data.csv └── test-data.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # first-class-js -------------------------------------------------------------------------------- /angular-confirmation-dialog/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/.editorconfig -------------------------------------------------------------------------------- /angular-confirmation-dialog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/.gitignore -------------------------------------------------------------------------------- /angular-confirmation-dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/README.md -------------------------------------------------------------------------------- /angular-confirmation-dialog/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/angular.json -------------------------------------------------------------------------------- /angular-confirmation-dialog/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular-confirmation-dialog/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /angular-confirmation-dialog/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/package-lock.json -------------------------------------------------------------------------------- /angular-confirmation-dialog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/package.json -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/app/app.component.html -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/components/shared/confirmation-dialog/confirmation-dialog.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/components/shared/confirmation-dialog/confirmation-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/app/components/shared/confirmation-dialog/confirmation-dialog.component.html -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/components/shared/confirmation-dialog/confirmation-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/app/components/shared/confirmation-dialog/confirmation-dialog.component.spec.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/app/components/shared/confirmation-dialog/confirmation-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/app/components/shared/confirmation-dialog/confirmation-dialog.component.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/browserslist -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/favicon.ico -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/index.html -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/karma.conf.js -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/main.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/polyfills.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/styles.css: -------------------------------------------------------------------------------- 1 | @import '~@angular/material/prebuilt-themes/deeppurple-amber.css'; 2 | -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/test.ts -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/tsconfig.app.json -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-confirmation-dialog/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/src/tslint.json -------------------------------------------------------------------------------- /angular-confirmation-dialog/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/tsconfig.json -------------------------------------------------------------------------------- /angular-confirmation-dialog/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-confirmation-dialog/tslint.json -------------------------------------------------------------------------------- /angular-loader/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/.editorconfig -------------------------------------------------------------------------------- /angular-loader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/.gitignore -------------------------------------------------------------------------------- /angular-loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/README.md -------------------------------------------------------------------------------- /angular-loader/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/angular.json -------------------------------------------------------------------------------- /angular-loader/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular-loader/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-loader/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-loader/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /angular-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/package-lock.json -------------------------------------------------------------------------------- /angular-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/package.json -------------------------------------------------------------------------------- /angular-loader/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-loader/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/app.component.html -------------------------------------------------------------------------------- /angular-loader/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-loader/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-loader/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-loader/src/app/components/shared/loader/loader.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/components/shared/loader/loader.component.css -------------------------------------------------------------------------------- /angular-loader/src/app/components/shared/loader/loader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/components/shared/loader/loader.component.html -------------------------------------------------------------------------------- /angular-loader/src/app/components/shared/loader/loader.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/components/shared/loader/loader.component.spec.ts -------------------------------------------------------------------------------- /angular-loader/src/app/components/shared/loader/loader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/components/shared/loader/loader.component.ts -------------------------------------------------------------------------------- /angular-loader/src/app/interceptors/loader.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/interceptors/loader.interceptor.ts -------------------------------------------------------------------------------- /angular-loader/src/app/services/loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/app/services/loader.service.ts -------------------------------------------------------------------------------- /angular-loader/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-loader/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/browserslist -------------------------------------------------------------------------------- /angular-loader/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-loader/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-loader/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/favicon.ico -------------------------------------------------------------------------------- /angular-loader/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/index.html -------------------------------------------------------------------------------- /angular-loader/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/karma.conf.js -------------------------------------------------------------------------------- /angular-loader/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/main.ts -------------------------------------------------------------------------------- /angular-loader/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/polyfills.ts -------------------------------------------------------------------------------- /angular-loader/src/styles.css: -------------------------------------------------------------------------------- 1 | @import '~@angular/material/prebuilt-themes/deeppurple-amber.css'; 2 | -------------------------------------------------------------------------------- /angular-loader/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/test.ts -------------------------------------------------------------------------------- /angular-loader/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/tsconfig.app.json -------------------------------------------------------------------------------- /angular-loader/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-loader/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/src/tslint.json -------------------------------------------------------------------------------- /angular-loader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/tsconfig.json -------------------------------------------------------------------------------- /angular-loader/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-loader/tslint.json -------------------------------------------------------------------------------- /angular-local-storage/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/.editorconfig -------------------------------------------------------------------------------- /angular-local-storage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/.gitignore -------------------------------------------------------------------------------- /angular-local-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/README.md -------------------------------------------------------------------------------- /angular-local-storage/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/angular.json -------------------------------------------------------------------------------- /angular-local-storage/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/browserslist -------------------------------------------------------------------------------- /angular-local-storage/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular-local-storage/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-local-storage/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-local-storage/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/e2e/tsconfig.json -------------------------------------------------------------------------------- /angular-local-storage/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/karma.conf.js -------------------------------------------------------------------------------- /angular-local-storage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/package-lock.json -------------------------------------------------------------------------------- /angular-local-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/package.json -------------------------------------------------------------------------------- /angular-local-storage/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-local-storage/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/app/app.component.html -------------------------------------------------------------------------------- /angular-local-storage/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-local-storage/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-local-storage/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-local-storage/src/app/local-storage.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/app/local-storage.service.spec.ts -------------------------------------------------------------------------------- /angular-local-storage/src/app/local-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/app/local-storage.service.ts -------------------------------------------------------------------------------- /angular-local-storage/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-local-storage/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-local-storage/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-local-storage/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/favicon.ico -------------------------------------------------------------------------------- /angular-local-storage/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/index.html -------------------------------------------------------------------------------- /angular-local-storage/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/main.ts -------------------------------------------------------------------------------- /angular-local-storage/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/polyfills.ts -------------------------------------------------------------------------------- /angular-local-storage/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/styles.css -------------------------------------------------------------------------------- /angular-local-storage/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/src/test.ts -------------------------------------------------------------------------------- /angular-local-storage/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/tsconfig.app.json -------------------------------------------------------------------------------- /angular-local-storage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/tsconfig.json -------------------------------------------------------------------------------- /angular-local-storage/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-local-storage/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-local-storage/tslint.json -------------------------------------------------------------------------------- /angular-mock-api/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/.editorconfig -------------------------------------------------------------------------------- /angular-mock-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/.gitignore -------------------------------------------------------------------------------- /angular-mock-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/README.md -------------------------------------------------------------------------------- /angular-mock-api/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/angular.json -------------------------------------------------------------------------------- /angular-mock-api/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/e2e/protractor.conf.js -------------------------------------------------------------------------------- /angular-mock-api/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-mock-api/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-mock-api/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /angular-mock-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/package-lock.json -------------------------------------------------------------------------------- /angular-mock-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/package.json -------------------------------------------------------------------------------- /angular-mock-api/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-mock-api/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/app/app.component.html -------------------------------------------------------------------------------- /angular-mock-api/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-mock-api/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-mock-api/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-mock-api/src/app/mock/mock.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/app/mock/mock.config.ts -------------------------------------------------------------------------------- /angular-mock-api/src/app/mock/mock.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/app/mock/mock.interceptor.ts -------------------------------------------------------------------------------- /angular-mock-api/src/app/mock/mock.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/app/mock/mock.module.ts -------------------------------------------------------------------------------- /angular-mock-api/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-mock-api/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/browserslist -------------------------------------------------------------------------------- /angular-mock-api/src/environments/environment.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/environments/environment.mock.ts -------------------------------------------------------------------------------- /angular-mock-api/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | mockApi: false 4 | }; 5 | -------------------------------------------------------------------------------- /angular-mock-api/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-mock-api/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/favicon.ico -------------------------------------------------------------------------------- /angular-mock-api/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/index.html -------------------------------------------------------------------------------- /angular-mock-api/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/karma.conf.js -------------------------------------------------------------------------------- /angular-mock-api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/main.ts -------------------------------------------------------------------------------- /angular-mock-api/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/polyfills.ts -------------------------------------------------------------------------------- /angular-mock-api/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/styles.css -------------------------------------------------------------------------------- /angular-mock-api/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/test.ts -------------------------------------------------------------------------------- /angular-mock-api/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/tsconfig.app.json -------------------------------------------------------------------------------- /angular-mock-api/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-mock-api/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/src/tslint.json -------------------------------------------------------------------------------- /angular-mock-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/tsconfig.json -------------------------------------------------------------------------------- /angular-mock-api/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/angular-mock-api/tslint.json -------------------------------------------------------------------------------- /express-serverless-crud/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=lala -------------------------------------------------------------------------------- /express-serverless-crud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/.gitignore -------------------------------------------------------------------------------- /express-serverless-crud/app-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/app-local.js -------------------------------------------------------------------------------- /express-serverless-crud/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/app.js -------------------------------------------------------------------------------- /express-serverless-crud/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/docker-compose.yml -------------------------------------------------------------------------------- /express-serverless-crud/employee-table-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/employee-table-model.json -------------------------------------------------------------------------------- /express-serverless-crud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/index.js -------------------------------------------------------------------------------- /express-serverless-crud/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/package-lock.json -------------------------------------------------------------------------------- /express-serverless-crud/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/package.json -------------------------------------------------------------------------------- /express-serverless-crud/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/express-serverless-crud/routes.js -------------------------------------------------------------------------------- /nodejs-csv-to-json/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /nodejs-csv-to-json/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-csv-to-json/package-lock.json -------------------------------------------------------------------------------- /nodejs-csv-to-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-csv-to-json/package.json -------------------------------------------------------------------------------- /nodejs-csv-to-json/read-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-csv-to-json/read-file.js -------------------------------------------------------------------------------- /nodejs-csv-to-json/read-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-csv-to-json/read-stream.js -------------------------------------------------------------------------------- /nodejs-csv-to-json/test-data-output-stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-csv-to-json/test-data-output-stream.json -------------------------------------------------------------------------------- /nodejs-csv-to-json/test-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-csv-to-json/test-data.csv -------------------------------------------------------------------------------- /nodejs-json-to-csv/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /nodejs-json-to-csv/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-json-to-csv/package-lock.json -------------------------------------------------------------------------------- /nodejs-json-to-csv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-json-to-csv/package.json -------------------------------------------------------------------------------- /nodejs-json-to-csv/read-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-json-to-csv/read-file.js -------------------------------------------------------------------------------- /nodejs-json-to-csv/read-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-json-to-csv/read-stream.js -------------------------------------------------------------------------------- /nodejs-json-to-csv/test-data-output-stream.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-json-to-csv/test-data-output-stream.csv -------------------------------------------------------------------------------- /nodejs-json-to-csv/test-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-json-to-csv/test-data.csv -------------------------------------------------------------------------------- /nodejs-json-to-csv/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vikobg/first-class-js/HEAD/nodejs-json-to-csv/test-data.json --------------------------------------------------------------------------------