A command-line business card that displays my contact information and social links.
Before you begin, ensure you have met the following requirements:
Note: This package is built with TypeScript and uses modern JavaScript features, so make sure you have a compatible Node.js version installed.
You can run this package using npx:
npx bittricky
Or install it globally:
yarn global add bittricky
After installing globally, you can use the following commands:
# Display the business card
bittricky
# Open resume in default browser
bittricky resume
--help
: Show help information--version
: Show version information
- Clone the repository:
git clone https://github.com/bittricky/business-card.git
cd business-card
- Install dependencies:
yarn install
- Start development mode:
yarn dev
- Build the package:
yarn build
- Run tests:
yarn test
- Run tests with coverage:
yarn test:coverage
- Run tests with specific path:
yarn test:path <path-to-test-file>
You can publish a new version using one of the following commands:
# Patch version (1.0.0 -> 1.0.1)
yarn publish:patch
# Minor version (1.0.0 -> 1.1.0)
yarn publish:minor
# Major version (1.0.0 -> 2.0.0)
yarn publish:major
MIT
@author Mitul Patel