npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

borne

v1.0.0

Published

A tool for Git and GitHub interaction via CLI.

Downloads

71

Readme

Borne 🐙

Welcome to Borne This project allows you to interact with Git and GitHub from the terminal in a simple and efficient way. Use this CLI to manage your repositories, branches, and commits without leaving the command line.

Features 🌟

  • Set the working directory
  • Create new repositories
  • Manage branches: create, switch, and delete
  • Make commits and view history
  • Set remote repositories
  • Perform pull and push operations

Installation 🛠️

  1. Install Borne globally using npm:
npm install -g borne

Usage 🚀

After installation, use the brn command followed by various subcommands to interact with Git repositories.

Available Commands

brn clone [repoUrl] [dir]       Clone a repository
brn create-repo [repoName]      Create a new repository
brn add [files]                 Add files to the Git index (staging area)
brn commit [message]            Commit changes with a message
brn push `<origin>` `<branch>`      Push changes to a remote repository
brn pull                        Pull changes from a remote repository
brn status                      Show the status of the repository
brn log                         Show commit history
brn create-branch [branchName]  Create a new branch
brn switch-branch [branchName]  Switch to a branch
brn delete-branch [branchName]  Delete a branch
brn set-remote [name] [url]     Set a remote repository
brn set-dir [directory]         Set working directory for Git commands
brn config-user                 Configure Git user name and email
brn exit                        Exit the program

Examples

Here are some examples of how to use the brn commands:

  1. Clone a repository:
brn clone [https://github.com/user/repo.git](https://github.com/user/repo.git) my-project
  1. Create a new repository:
brn create-repo my-new-project
  1. Add files to staging:
brn add .
  1. Commit changes:
brn commit "Initial commit"
  1. Push changes:
brn push origin main
  1. Create and switch to a new branch:
brn create-branch feature-branch
brn switch-branch feature-branch
  1. Show repository status:
brn status
  1. View commit history:
brn log
  1. Set a remote repository:
brn set-remote origin [https://github.com/user/repo.git](https://github.com/user/repo.git)
  1. Set working directory:
brn set-dir /path/to/your/project

Configuration

Before using Borne, configure your Git user name and email:

brn config-user

You'll be prompted to enter your name and email address.

Contribution 🤝

We welcome contributions to Borne! If you'd like to contribute:

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Please make sure to update tests as appropriate and adhere to the project's coding standards.

License

Your feedback and contributions help make Borne better for everyone. Don't hesitate to reach out!

Happy coding with Borne! May your repositories always be in order and your commits crystal clear. 🚀🐙