Skip to content

Latest commit

 

History

History
57 lines (49 loc) · 1.35 KB

README.md

File metadata and controls

57 lines (49 loc) · 1.35 KB

DSA-TypeScript

Data Structures and Algorithms in TypeScript.

Install Dependencies

$ npm install

Run Tests

$ npm test # Run all the tests using NPM
$ npm test -- --runInBand # Run all the tests in a single process using NPM
$ npx jest # Run all the tests
$ npx jest --runInBand # Run all the tests in a single process
$ npx jest ./src/example.test.ts # Run the specified test

Run *.ts Files

$ npm install -g ts-node
$ ts-node --esm ./src/sorting/bubble_sort/bubbleSort.ts