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

focus-svn

v2.0.0

Published

svn cli tool creating git-like commands and shortcuts

Downloads

19

Readme

focus-svn

SVN cli tool to facilitate daily tasks in SVN using git-like commands and shortcuts

Command List

Command Details


checkout

checkout [branchNumber] [targetDir]

checkout branch into current directory

Aliases: co, clone | Argument Name | Alias | Type | Description | Default | | ------------- | ----- | ---- | ----------- | ------- | | branch | - | undefined | branch name or jira number | | | target | - | string | directory to checkout branch into (optional) | | | b | - | boolean | set to true to create branch if it does not exist | |

config

config

change tool default variables

| Argument Name | Alias | Type | Description | Default | | ------------- | ----- | ---- | ----------- | ------- | | activeTrunk | - | undefined | set this to change the default trunk version to use as tool | | | root | - | undefined | configure svn root | | | branchPrefix | - | string | set the default branch prefix | | | output | - | string | svn output type | | | verbose | - | boolean | undefined | | | silent | - | boolean | undefined | | | branchDir | - | string | svn branch directory | | | extract | - | boolean | echo out the config json | |

createBranch

createBranch [branchName]

create a branch

Aliases: cp, copy, branch | Argument Name | Alias | Type | Description | Default | | ------------- | ----- | ---- | ----------- | ------- | | branch | - | undefined | branch name or jira number | | | switchBranch | - | boolean | also switch active directory to branch (optional) | | | prefix | - | string | branch prefix (default: NULL, optional) | |

merge

merge [branch]

merge specified branch into active or target branch

Aliases: m | Argument Name | Alias | Type | Description | Default | | ------------- | ----- | ---- | ----------- | ------- | | branchName | - | string | branch to merge | | | target | - | string | brange to merge into (optional) | ./ |

getMergeString

getMergeString

spit out a copy/paste ready merge string for local branch

Aliases: ms | Argument Name | Alias | Type | Description | Default | | ------------- | ----- | ---- | ----------- | ------- | | branchName | - | string | branch to get a merge string for (default: working branch, optional) | | | branchSource | - | string | Use this as url base instead of automatically generated root (default: svn root) | |

rebase

rebase

create a new branch off the chosen trunk and merge the target branch into it

| Argument Name | Alias | Type | Description | Default | | ------------- | ----- | ---- | ----------- | ------- | | target | - | string | branch name to rebase into | | | source | - | string | source branch name | | | branch | - | string | branch name/number | | | resolve | - | string | resolve option for merge | p |

remove

remove [branchName]

remove a branch from svn

Aliases: rm, delete | Argument Name | Alias | Type | Description | Default | | ------------- | ----- | ---- | ----------- | ------- | | branch | - | string | branch name/number to delete | |

switch

switch [branchName]

switch current directory branch

Aliases: s | Argument Name | Alias | Type | Description | Default | | ------------- | ----- | ---- | ----------- | ------- | | branch | - | string | branch name/number to switch current working directory to | |