
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
HighX is an AI-native framework for building production-ready AI applications 10x faster. From chatbots to agents, HighX provides a modular, type-safe platform with built-in RAG, multi-model inference, and seamless integrations, all powered by TypeScript.
Please note that some features mentioned below are still in active development and not yet available. Stay tuned for updates as we bring these powerful tools to life!
Install HighX globally using Bun:
bun add -g highx
Initialize a new HighX project:
highx init [project-name]
cd [project-name]
Create a new plugin or module:
highx new [plugin-name]
List all available plugins or modules:
highx list
View available commands and options:
highx help
Configure your project in highx.config.ts:
import type { ServerConfig } from "highx";
import path from "node:path";
// Example configuration for the server
const config: ServerConfig = {
routes: [
{
path: "/(.*)",
method: "ALL",
handler: {
type: "proxy",
proxy: {
target: "http://localhost:3000",
rewrite: "^/api/(.*)$ /$1",
},
},
},
...
],
plugins: [
{
name: "aitrace",
modulePath: path.resolve(import.meta.dir, "plugins", "./aitrace.ts"),
hookOn: ["invoke"],
config: {
level: "info",
},
enabled: true,
},
],
};
// Export the configuration
export default config;
Start development:
highx dev
HighX’s plugin system enables rapid extension of core functionality. Use community plugins or create your own for features like:
Explore the plugin marketplace at https://highx.dev/plugins.
Full documentation, API reference, and examples are available at https://highx.dev/docs.
We welcome contributions! Please read our CONTRIBUTING.md to get started.
Apache-2.0 License. See LICENSE for details.
Made with ❤️ by the HighX team.
FAQs
The ultimate gateway for AI apps
We found that highx 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.