TypeScript, axios, jest, webpack5
- Install Node.js (version >= v12.18.1 );
- Install yarn package management tool globally;
$ npm install -g yarn
In the project directory, execute the following command:
$ yarn install
For the purpose of developing new features, testing the changes, as well as the TS compilation, project has a sandbox file, which you can modify and save, and after that the source code would be re-compiled and executed.
To do so, first, in the project root directory execute this command, and wait for the console log output to appear.
$ yarn start
Then, modify src/run.ts
file, and save it, so the code would be re-compiled, executed and re-rendered in the output.
For the sake of consistency, all the tests should be created with .spec.ts
extension, at the same level, where the tested file is located.
For example, for src/utils.ts
the test file should be named as src/utils.spec.ts
.
To run the tests, in the project root directory execute this command, and wait for the console log output to appear.
$ yarn test
With the idea of following good practices and standards, code should be linted and cleaned-up before being commited. The project is configured to use eslint and prettier for this purpose.
To run the linting, in the project root directory execute this command, and wait for the console log output to appear.
$ yarn lint
The project is configured in such as way, so there is no need to manually create types. After running build command, all the types are generated automatiacally, based on .ts files annotations.
Execute the following commands in the project directory to build resources for execution in the production environment.
$ yarn build
Compiled bundles as well as the exported types, would be located in "root directory/dist"