2.0.1 • Published 4 months ago
meet-simen v2.0.1
npx meet-simen
Get to know Simen using your command line with Node.js
Usage
To use this CLI run the following command:
npx meet-simen
Features
- 🚀 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
Options
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
Data Customization
All CV data is stored in JSON files in the src/data
directory:
bio.json
- Personal bio informationexperience.json
- Work experience detailsskills.json
- Technical skillsprojects.json
- Notable projectssocial.json
- Social media linksconfig.json
- Configuration settings
You can easily update these files to customize your CV without changing the code.
Remote Data Loading
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
Development
This project uses TypeScript and npm for development.
Setup
# 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
Building
# Build the project
npm run build
Local Testing
To test the CLI locally, link it:
# Link the package
npm link
# Now you can run it
meet-simen
Publishing
# Publish to npm
npm publish
Requirements
- Node.js 16 or higher