Connect Muam with other frameworks, libraries, and APIs to extend your development capabilities.
Learn Integration PatternsMerge Muam components with React hooks and state management using our compatibility layer.
import React from 'muam/react';
Use Vue components within Muam apps with automatic lifecycle mapping and prop conversion.
import { VueBridge } from 'muam/vue';
import React, { useState } from 'react';
import { useMuamState } from 'muam/react';
const MuamCounter = () => {
const [count, setCount] = useState(0);
return (
Current Count: {count}
);
};
Seamlessly connect Muam with REST, GraphQL, or gRPC APIs through our built-in client layer.
importApiClient from 'muam/api';
Package Muam features as custom elements for use in vanilla JS projects or other frameworks.
customElements.define('muam-counter', MuamComponent);
Connect Muam web applications with backend microservices using our standard communication patterns.
import { ServiceBus } from 'muam/microservices';
Whether you're extending existing systems or bridging frameworks, Muam provides the tools you need to create unified web experiences.
View All Tutorials Begin Integration Demo