A personal w̶e̶b̶s̶i̶t̶e̶ npm module.
Here's how you install and run the module
npx rvgplRun this if you would like to have the module installed globally
npm install -g rvgplWant to create your own personal CLI? Follow these steps:
- Fork this repository
- Clone your fork
- Update the
data.jsfile with your information:
export default {
firstName: "YourFirstName",
lastName: "YourLastName",
bio: "A brief introduction about yourself",
links: [
{ name: "GitHub", url: "https://github.com/yourusername" },
{ name: "LinkedIn", url: "https://linkedin.com/in/yourusername" },
// Add more social links
],
projects: [
{
name: "Project Name",
description: "Brief project description",
link: "https://github.com/yourusername/project",
},
// Add more projects
],
};-
Update
package.json:- Change the package name (make sure it's unique on npm)
- Update author and description
- Update repository links if needed
-
Test your CLI locally:
npm install
npm link- Publish to npm:
npm login
npm publishNow others can install your CLI using npx yourpackagename!
MIT