Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Overide is a lightweight yet powerful CLI tool designed to simplify AI-powered code generation directly within your development workflow. With Oi, you can quickly generate, update, and integrate code using predefined prompts, allowing you to focus on the creative aspects of coding while letting AI handle the heavy lifting.
//> <//
patterns for code generationInstall globally using npm or pnpm:
npm install -g overide
# or
pnpm install -g overide
For more installation options, see our installation guide.
Configure your AI platform credentials:
overide config --global
Select an active platform if you've configured multiple:
overide config --select-active
Initialize Overide in your project directory:
overide init
Begin monitoring files for code generation:
overide start
Insert prompts in your code:
//> Generate a function that logs 'Hello, World!' <//
Overide will generate and insert code:
//- 'Hello, World!' Function
function helloWorld() {
console.log("Hello, World!");
}
//> Accept the changes (y/n): -//
Configure Overide using oi-config.json
:
{
"name": "project name",
"ignore": ["node_modules", "*.test.js"]
}
dev
dev
dev
dev
merges to staging
staging
merges to main
with version prefix:
patch:
for bug fixes (0.0.X)minor:
for new features (0.X.0)major:
for breaking changes (X.0.0)Example PR titles:
npm run dev
# or
pnpm dev
npm run
or pnpm
prefixed:npm run overide init
# or
pnpm overide init
The development watcher (npm run dev
) will automatically rebuild the project when you make changes to the source code, allowing you to test changes in real-time.
npm run build
npm link
npm link -g overide
overide --version
overide init
overide start
# In test project
npm unlink -g overide
# In Overide project
npm unlink
Join our Discord to collaborate, share ideas, and stay updated with Overide developments.
Overide is licensed under the GNU GPL-2.0 License. See the LICENSE file for details.
FAQs
This is a CLI based Code Generation Tool.
The npm package overide receives a total of 17 weekly downloads. As such, overide popularity was classified as not popular.
We found that overide demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.