Get to know Simen using your command line with Node.js
To use this CLI run the following command:
npx meet-simen
- 🚀 Modern TypeScript codebase
- 📦 Minimal dependencies
- 🎨 Colorful terminal output with Chalk
- 📊 GitHub stats integration
- 🔗 Social links and personal bio
- 📦 Beautiful boxed output with Boxen
- 📝 Interactive CV with work experience, skills, and projects
- 🔄 Remote data loading from GitHub (always up-to-date)
- 🧩 Modular architecture for easy maintenance
- 🎭 Interactive mode with step-by-step navigation
Usage: meet-simen [options]
Options:
-V, --version output the version number
-b, --no-bio Hide bio information
-s, --no-social Hide social links
-a, --no-ad Hide the ad
-e, --no-experience Hide work experience
-k, --no-skills Hide skills
-p, --no-projects Hide projects
-r, --remote Load data from remote source (GitHub)
-i, --interactive Interactive mode (press Enter to navigate)
-d, --debug Show debug information
--no-clear Do not clear the console
-h, --help display help for command
All CV data is stored in JSON files in the src/data
directory:
-
bio.json
- Personal bio information -
experience.json
- Work experience details -
skills.json
- Technical skills -
projects.json
- Notable projects -
social.json
- Social media links -
config.json
- Configuration settings
You can easily update these files to customize your CV without changing the code.
The CLI can load data directly from GitHub, allowing you to update your CV information without republishing the package. To use this feature:
- Update the JSON files in your GitHub repository
- Run the CLI with the
-r
or--remote
flag
npx meet-simen --remote
This project uses TypeScript and npm for development.
# Clone the repository
git clone https://github.com/Eventyret/meet-simen.git
cd meet-simen
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build the project
npm run build
To test the CLI locally, link it:
# Link the package
npm link
# Now you can run it
meet-simen
# Publish to npm
npm publish
- Node.js 16 or higher