Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "22.14"
node-version: "24"
cache: "npm"
cache-dependency-path: |
ix-cli/package-lock.json
Expand Down
18 changes: 4 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
<p align="center">
<a href="https://www.ix-infra.com">Website</a> ·
<a href="https://www.ix-infra.com/docs">Docs</a> ·
<a href="https://compass.ix-infra.com">Demo</a>
<a href="https://compass.ix-infra.com">Demo</a> .
<a href="https://discord.gg/ncEYVHVqZ8">Discord</a>
</p>

<p align="center">
Expand Down Expand Up @@ -81,11 +82,6 @@ curl -fsSL https://ix-infra.com/install.sh | sh
```bash
irm https://ix-infra.com/install.ps1 | iex
```
### Homebrew
```bash
brew tap ix-infrastructure/ix https://github.com/ix-infrastructure/Ix
brew install ix
```
### Claude Plugin
``` bash
/plugin marketplace add ix-infrastructure/ix-claude-plugin
Expand All @@ -107,19 +103,13 @@ gemini extensions install https://github.com/ix-infrastructure/ix-gemini-plugin
## Requirements

- macOS, Linux, or Windows
- Node.js 20 or newer
- Git installed
- Docker (for full functionality)

## Supported Languages

Ix currently supports:

- TypeScript / JavaScript
- Python
- Go
- Java
- more coming

Ix currently supports over 15 languages!
(See docs for full list)

## Quick Start
Expand Down
209 changes: 100 additions & 109 deletions core-ingestion/package-lock.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions core-ingestion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,14 @@
"tree-sitter-swift": "^0.6.0"
},
"devDependencies": {
"@emnapi/core": "1.9.2",
"@emnapi/runtime": "1.9.2",
"@types/node": "^20.0.0",
"fast-check": "^4.6.0",
"typescript": "^5.4.0",
"vitest": "^4.1.0"
},
"overrides": {
"vite": "8.0.5"
}
}
252 changes: 247 additions & 5 deletions ix-cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions ix-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
"bin": {
"ix": "dist/cli/main.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "node scripts/build-core-ingestion.mjs && node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc",
"test": "node scripts/build-core-ingestion.mjs && vitest run --exclude test/parser.test.ts && node test/parser.smoke.mjs",
Expand All @@ -27,5 +30,8 @@
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"vitest": "^3.2.4"
},
"overrides": {
"vite": ">=7.3.2 <8.0.0"
}
}
5 changes: 3 additions & 2 deletions ix-cli/src/cli/commands/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { IxClient } from "../../client/api.js";
import { getEndpoint } from "../config.js";
import { roundFloat } from "../format.js";
import { bootstrap } from "../bootstrap.js";
import { formatFetchError } from "../errors.js";
import { ingestFiles } from "./ingest.js";

export interface MapRegion {
Expand Down Expand Up @@ -159,7 +160,7 @@ Examples:
mapMode: true,
});
} catch (err: any) {
console.error(chalk.red("Error:"), err.message ?? err);
console.error(chalk.red("Error:"), formatFetchError(err));
process.exitCode = 1;
return;
}
Expand All @@ -183,7 +184,7 @@ Examples:
result = await client.map({ full: opts.full }) as MapResult;
} catch (err: any) {
if (mapInterval) { clearInterval(mapInterval); process.stderr.write('\r' + ' '.repeat(60) + '\r'); }
console.error(chalk.red("Error:"), err.message ?? err);
console.error(chalk.red("Error:"), formatFetchError(err));
process.exitCode = 1;
return;
}
Expand Down
Loading
Loading