Where does Graftcode fit?

Graftcode is a runtime integration system for generated, package-based method calls. This page gives a quick capability summary and the key limits to check. For the exhaustive list, see Known limitations.

Capability summary

RuntimeHost code with GGGenerate Graft
.NETYesYes
Node.js / TypeScriptYesYes
Java / JVMYesYes
PythonYesYes
PHPYesIn development
RubyYesIn development

See Supported runtimes and package managers for versions, package ecosystems, and status. Generated Gateway/Vision output is the source of truth for the package, imports, configuration, and call surface of your running version.

Key limits to check

  • Contract types: prefer primitives, strings, and plain models; framework complex types are rejected at generation. Verify advanced types (nullability, unions, enums, generics, collections) for your exact Receiver/Caller pair.
  • Execution: clients default to in-memory; set the remote host before the first call. Static, stateless methods scale best; instance identity needs affinity and can break on restart.
  • Packages: a free standalone Gateway's registry ID can change on restart. Copy the emitted install command; use a project key for stable identity.
  • Operations: Graftcode does not replace TLS, auth, authorization, load balancing, health checks, or telemetry. Gateway sits in the call path — operate and scale it as part of the service.

Full detail lives in Known limitations, type mapping, and callable surface.

Before production

Generate the real Graft and smoke-test every operation for your language pair; test upgrades, restart, scale-out, and failure paths; configure transport security, identity, and authorization; add telemetry at both boundaries; and pin versions. See the full checklist in Known limitations.

Start with Quick start for a hands-on first call, then use the scenario chooser.