├── .gitignore ├── .jshintrc ├── README.md ├── dist ├── App.js ├── data.json ├── index.js ├── routes │ └── HeroRouter.js ├── src │ ├── App.js │ ├── index.js │ └── routes │ │ └── HeroRouter.js └── test │ ├── helloWorld.test.js │ └── hero.test.js ├── gulpfile.js ├── package.json ├── src ├── App.ts ├── data.json ├── index.ts └── routes │ └── HeroRouter.ts ├── test ├── helloWorld.test.ts └── hero.test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/README.md -------------------------------------------------------------------------------- /dist/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/App.js -------------------------------------------------------------------------------- /dist/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/data.json -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/routes/HeroRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/routes/HeroRouter.js -------------------------------------------------------------------------------- /dist/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/src/App.js -------------------------------------------------------------------------------- /dist/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/src/index.js -------------------------------------------------------------------------------- /dist/src/routes/HeroRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/src/routes/HeroRouter.js -------------------------------------------------------------------------------- /dist/test/helloWorld.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/test/helloWorld.test.js -------------------------------------------------------------------------------- /dist/test/hero.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/dist/test/hero.test.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/package.json -------------------------------------------------------------------------------- /src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/src/App.ts -------------------------------------------------------------------------------- /src/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/src/data.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/routes/HeroRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/src/routes/HeroRouter.ts -------------------------------------------------------------------------------- /test/helloWorld.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/test/helloWorld.test.ts -------------------------------------------------------------------------------- /test/hero.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/test/hero.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjhea0/typescript-node-api/HEAD/tsconfig.json --------------------------------------------------------------------------------