Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
/ bindec Public archive

A CLI application for binary and decimal number conversion.

License

Notifications You must be signed in to change notification settings

kentlouisetonino/bindec

Repository files navigation

Description

  • A CLI computer program that converts binary numbers to decimal numbers and vice versa.
  • The technologies are Typescript, Jest (Unit Test), Bash, NodeJS, Snapcraft, and GNU/Linux.


Local Development

  • Pushing all changes to all remote repository.
# Change mode the permission and make it executable.
chmod +x git-push-all

# Push all changes to all remote repository.
./git-push-all
  • For manually executing the scripts.
yarn install
yarn build
yarn start
yarn test:all
  • Execute the app using the bash script.
# Change app permission and make it executable.
sudo chmod +x app

# Execute app.
./app
  • Execute the app-tests using the bash script.
# Change app-tests permission and make it executable.
sudo chmod +x app-tests

# Execute app-tests.
./app-tests