rvgpl
v0.0.1
Published
Personal CLI of Ravigopal Kesari
Downloads
10
Readme
Personal CLI
A personal w̶e̶b̶s̶i̶t̶e̶ npm module.
Usage
Here's how you install and run the module
npx rvgplInstall
Run this if you would like to have the module installed globally
npm install -g rvgplCreate Your Own
Want 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!
License
MIT
