
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
A library for managing repositories
| Nehemiah was a high official in the Persian court of King Artaxerxes I of Persia and led the third return of the Jewish people after seventy years of exile. He organized the reconstruction of the wall of Jerusalem in record time while defending against opposition on all sides. His talent, his huge organizational accomplishments and his faith in God inspired the name for this package. Read the whole story. |
Basically monorepos without the monorepo. Nehemiah synchronizes directories and executes tasks within them, based on code you write using a simple API.
Features include:
tslint.jsonREADME.mdpackage.json with standardized values.gitignoreyarn install, git fetch, yarn upgrade, sort-package-jsonpackage.json, missing licenseyarn add nehemiah
import Nehemiah from "nehemiah"
const projects = ["a", "b", "c"]
interface Package {
author: string
keywords: string[]
}
async function updateProject(dir: string) {
const n = new Nehemiah(dir)
const updatePackage = () => n.modify("package.json")
.asJson<Package>(p => {
p.author = "Esra"
if (!Array.isArray(p.keywords) || p.keywords.length < 3) {
n.warn("Not enough keywords")
}
})
const shouldHaveLicense = async () => {
if (!await n.exists("license*")) {
n.warn("Missing license")
}
}
const deleteLogs = async () => n.delete("*.log")
const updateEditorConfig = async () =>
n.copy(__dirname, "templates/.editorconfig").to(".editorconfig")
const updateMinorPatch = async () =>
n.run("yarn upgrade --mutext file")
const gitFetchPrune = () => n.run("git fetch --prune")
await Promise.all([
updatePackage,
shouldHaveLicense,
deleteLogs,
updateEditorConfig,
updateMinorPatch,
gitFetchPrune,
])
}
(async () => {
for (const dir of projects) {
await updateProject(dir)
}
})()
FAQs
A library for managing repositories
We found that nehemiah 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
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.