├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── favicon.ico ├── index.html ├── package.json ├── src ├── app │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.server.ts │ ├── app.config.ts │ ├── components │ │ ├── comment.component.ts │ │ ├── nav.component.ts │ │ ├── stories.component.ts │ │ └── toggle.component.ts │ ├── hn.service.ts │ ├── models.ts │ └── pages │ │ ├── [...stories].page.ts │ │ ├── stories │ │ └── [id].page.ts │ │ └── users │ │ └── [id].page.ts ├── assets │ ├── .gitkeep │ ├── analog.svg │ └── vite.svg ├── main.server.ts ├── main.ts ├── server │ └── routes │ │ └── v1 │ │ └── hello.ts ├── styles.css ├── test.ts └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/angular.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/app.config.server.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/components/comment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/components/comment.component.ts -------------------------------------------------------------------------------- /src/app/components/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/components/nav.component.ts -------------------------------------------------------------------------------- /src/app/components/stories.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/components/stories.component.ts -------------------------------------------------------------------------------- /src/app/components/toggle.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/components/toggle.component.ts -------------------------------------------------------------------------------- /src/app/hn.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/hn.service.ts -------------------------------------------------------------------------------- /src/app/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/models.ts -------------------------------------------------------------------------------- /src/app/pages/[...stories].page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/pages/[...stories].page.ts -------------------------------------------------------------------------------- /src/app/pages/stories/[id].page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/pages/stories/[id].page.ts -------------------------------------------------------------------------------- /src/app/pages/users/[id].page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/app/pages/users/[id].page.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/analog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/assets/analog.svg -------------------------------------------------------------------------------- /src/assets/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/assets/vite.svg -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/main.server.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/server/routes/v1/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/server/routes/v1/hello.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonroberts/analog-hackernews/HEAD/vite.config.ts --------------------------------------------------------------------------------