
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@amityco/ts-sdk-react-native
Advanced tools
npm install @amityco/ts-sdk-react-nativeyarn add @amityco/ts-sdk-react-nativeTo connect your users to our platform, you need to create a client instance and connect it.
import { Client } from '@amityco/ts-sdk-react-native';
(async () => {
const sessionHandler: Amity.SessionHandler = {
sessionWillRenewAccessToken(renewal: Amity.Renewal) {
renewal.renew();
/*
* If using an auth token
*
* try {
* renew.renewWithAuthToken(authToken)
* } catch() {
* sdk will try to renew again at a later time
*
* renew.unableToRetrieveAuthToken()
* }
*/
},
};
const client = Client.createClient(API_KEY, API_REGION);
let isConnected = await Client.login({ userId: USER_ID }, sessionHandler);
})();
The API_KEY and API_REGION are given at the time you create an application in the Amity Portal.
You can listen to disconnection by using the onClientDisconnected function:
import { Client } from '@amityco/ts-sdk-react-native';
const unsub = Client.onClientDisconnected(() => (isConnected = false));
The unsub's return value is a dispose function which is used to clean the memory of your client's application. It's been designed to fit perfectly with React, in a useEffect such as:
useEffect(() => onClientConnected(() => setConnected(false)), [])
## Going further
### Domain types
All the necessary types are automatically exposed in the `Amity` namespace. As long as you import the SDK once, the namespace will be available in your workspace. You can start to type `Amity.` and see the list of types in your intellisense after having imported the SDK in any file of your project.
### Subscribing to real time events
We expose a couple of functions for your to receive simply the events that could fire from our servers, for example, if another user would change their display name, or if a channel would receive a new message.
The `subscribeTopic` method retuns an unsubscriber that can be called on clean up to stop recieving further events.
```ts
import { subscribeTopic, getUserTopic } from '@amityco/ts-sdk-react-native'
const unsub = subscribeTopic(getUserTopic({} as Amity.User))
For an 'all-in-one' approach, we expose live objects, which allow to fetch an object and register to its changes all at once. This has been designed to fit with React's useState and useEffect:
import { UserRepository } from '@amityco/ts-sdk-react-native'
const Component = ({ userId }: { userId: string }) => {
const [user, setUser] = useState<Amity.User>({})
useEffect(() => UserRepository.getUser(userId, ({ data: user, loading, error }) => {
// ensure you call unsub() on cleanup or unmount
const unsub = subscribeTopic(getUserTopic(user))
setUser(user)
}), [userId])
return <div>{JSON.stringify(user, null, 2)}
}
Similar to the concept of live object, we expose live collection, which allow to fetch a collection and register to its changes all at once. This has been designed to fit with React's useState and useEffect:
import { UserRepository.getUsers } from '@amityco/ts-sdk-react-native'
const Component = () => {
const [users, setUsers] = useState<Amity.User[]>({})
useEffect(() => UserRepository.getUsers({}, ({ data, loading, error, nextPage, hasNextPage }) => {
// ensure you call unsub() on cleanup or unmount
// Subscribe to each user in collection for getting real time updates
setUsers(users)
}), [userId])
return <div>{JSON.stringify(user, null, 2)}
}
To see the comprehensive documentation please visit our documentation page.
If you have any questions, you can visit our forum.
FAQs
Amity Social Cloud Typescript SDK
We found that @amityco/ts-sdk-react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.