
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
SWGH - Split With Git History. An NPX command which allows you to quickly split a file into a copy of it, retaining its git history.
An minimal NPX command which allows you to quickly & easily clone a file into a copy of it, retaining its git history.
It's most useful when you have a file and you want to break it up into multiple smaller files, retaining the line git history in each of them.
npx swgh <source> <destination>
npx swgh README.md README2.md
npx swgh README.md cloneWithOtherExtension.txt
npx swgh someFolder/someFile.js someOtherFolder/randomSubfolder/halfOfTheFile.ts
Let's assume you have a big file characters.js containing many functions which log a character, and you'd like to split it up into 2 files. One for consonant loggers, one for vowel loggers.
$ git blame characters.js
ca123d function a() { console.log('a') }
b5103d function b() { console.log('b') }
b5103d function c() { console.log('c') }
b5103d function d() { console.log('d') }
ca123d function e() { console.log('e') }
...
Assume that in commit ca123d vowel loggers have been added and in commit b5103d consonant loggers have been added.
$ npx swgh characters.js vowelLoggers.js
The result is characters.js and vowelLoggers.js containing the exact same code with the same git history.
Rename the original file to consonantLoggers.js
mv characters.js consonantLoggers.js
Clean up the files to represent what you initially intended:
$ git blame consonantLoggers.js
b5103d function b() { console.log('b') }
b5103d function c() { console.log('c') }
b5103d function d() { console.log('d') }
...
$ git blame vowelLoggers.js
ca123d function a() { console.log('a') }
ca123d function e() { console.log('e') }
...
Commit your changes
$ git commit -am "Splitted up characters.js into consonantLoggers.js and vowelLoggers.js"
git status should say "nothing to commit, working tree clean"FAQs
SWGH - Split With Git History. An NPX command which allows you to quickly split a file into a copy of it, retaining its git history.
The npm package swgh receives a total of 1 weekly downloads. As such, swgh popularity was classified as not popular.
We found that swgh demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.