https://github.com/zoltan-nz/typescript-sandbox
Typescript Sandbox
https://github.com/zoltan-nz/typescript-sandbox
cli experiment sandbox stream typescript universal-dependencies
Last synced: 6 months ago
JSON representation
Typescript Sandbox
- Host: GitHub
- URL: https://github.com/zoltan-nz/typescript-sandbox
- Owner: zoltan-nz
- Created: 2018-06-20T01:47:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-27T13:53:32.000Z (over 6 years ago)
- Last Synced: 2025-03-30T13:03:44.102Z (6 months ago)
- Topics: cli, experiment, sandbox, stream, typescript, universal-dependencies
- Language: TypeScript
- Size: 6.33 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TypeScript SandBox
- [Experiment 1 - Streaming: Reading CSV file, transforming records to JavaScript Objects](src/streamer-experiment/README.md)
- [Experiment 2 - Creating a CLI tool in NodeJS](./src/cli-experiment/README.md)
- [Experiment 3 - Setup an universal library package with TypeScript](./src/package-experiment/README.md)
- [Experiment 4 - Using Jest Puppeteer for real browser acceptance testing](./src/jest-puppeteer-experiment/README.md)
- [Experiment 5 - Parsing numbers](./src/parsing-numbers/README.md)## NPM commands
| Command | Description |
| ------------------------ | ------------------------------------------------------- |
| `npm run clean` | Remove `./dist` folder |
| `npm run prettier` | Run `prettier` |
| `npm run lint` | Run `prettier` and `ts-lint` sequentially |
| `npm run build` | Run `clean` and `lint` parallel and run `tsc` after |
| `npm run test` | Run `jest` |
| `npm run watch:build` | Watch any `*.ts` file change and run `tsc` |
| `npm run watch:prettier` | Watch any `*.ts` file change and run `prettier` |
| `npm run watch:lint` | Watch any `*.ts` file change and run `tslint` with fix` |
| `npm run watch:test` | Run `jest` with `--watchAll` |
| `npm run dev` | Run `watch:build` and `watch:test` parallel |