
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
GitPlan is a Git-based Kanban board system that uses your file system as a database. Create boards by making folders, add issues as markdown files, and configure columns with JSON files.
Init demo
npx gitplan init
Start gitplan
npx gitplan
your-folder/
├── boards/
│ ├── personal-goals.view.json # Board configuration
│ ├── markiting.view.json # Board configuration
│ └── ...
├── issues/
│ ├── feature-request.md # Issue as markdown file
│ ├── another-feature-request.md # Issue as markdown file
│ └── ...
└── ...
Configure your board columns and filtering with a view.json file:
Issues are markdown files with frontmatter:
---
title: Implement User Authentication
status: in-progress
priority: high
assignee: john-doe
labels: ["backend", "security"]
createdAt: 2024-01-15
estimatedHours: 16
---
# Issue Description
Your issue content goes here in markdown format.
## Requirements
- [ ] Requirement 1
- [ ] Requirement 2
- [x] Completed requirement
## Notes
Any additional notes or details.
GitPlan supports powerful filtering in your view.json:
{
"status": "todo",
"priority": "high",
"assignee": "john-doe"
}
This repository includes a demo project in the demo-project/ folder with three example boards:
To try the demo:
cd demo-project
npx gitplan
# Clone the repository
git clone <repository-url>
cd gitplan
# Install dependencies
npm install
# or
yarn install
# Test the CLI
npm run test:cli
# or
yarn test:cli
# Start Next.js development server
npm run dev
# or
yarn dev
# Build for production
npm run build
# or
yarn build
# Start production server
npm start
# or
yarn start
# Build everything and publish to npm
cd publish && npm publish
The CLI will be available as gitplan command globally after installation.
MIT License - see LICENSE file for details.
FAQs
Git-based Kanban board system
The npm package gitplan receives a total of 0 weekly downloads. As such, gitplan popularity was classified as not popular.
We found that gitplan demonstrated a healthy version release cadence and project activity because the last version was released less than 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 breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.