eckra
AI-powered Git management: smart commits, project stories, and the whole repo in one place
File Explorer
- bug_report.md
- feature_request.md
- ci.yml
- publish.yml
- dependabot.yml
- PULL_REQUEST_TEMPLATE.md
- stale.yml
- release-notes.js
- ai.js
- clipboard.js
- config.js
- doctor.js
- git.js
- graph.js
- lazygit.js
- patch.js
- providers.js
- releaseNotes.js
- suggest.js
- update.js
- about.js
- amend.js
- blame.js
- branch.js
- commit-details.js
- commit.js
- conflict.js
- diff.js
- graph.js
- log.js
- more.js
- onboarding.js
- rebase.js
- remote.js
- search.js
- settings.js
- stage.js
- stash.js
- stats.js
- status.js
- submodule.js
- sync.js
- tag.js
- timeline.js
- undo.js
- update.js
- worktree.js
- app.js
- common.js
- diff-view.js
- screen.js
- index.js
- ai.test.js
- branch.test.js
- clipboard.test.js
- commit-details.test.js
- commit.test.js
- common.test.js
- config.test.js
- conflict.test.js
- diff-view.test.js
- doctor.test.js
- git.test.js
- graph.test.js
- lazygit.test.js
- patch.test.js
- project.test.js
- providers.test.js
- release-notes.test.js
- screen.test.js
- settings.test.js
- status.test.js
- suggest.test.js
- timeline.test.js
- update.test.js
- .gitignore
- .prettierrc
- AGENTS.md
- CONTRIBUTING.md
- eckra.gif
- eckra.png
- eslint.config.js
- LICENSE
- package-lock.json
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm uninstall
View Details ▼
npm uninstall
Remove a package.
npm {{[r|uninstall]}} {{package_name}}
Remove a package from the current project:
npm {{[r|uninstall]}} {{package_name}} {{[-g|--global]}}
Remove a package globally:
npm {{[r|uninstall]}} {{package_name1 package_name2 ...}}
Remove multiple packages at once:
