Skip to content

This is an demo repository to showcase Nango capabilities.

Notifications You must be signed in to change notification settings

NangoHQ/interactive-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9f63c73 · Mar 8, 2024

History

4 Commits
Mar 8, 2024

Repository files navigation

Interactive Demo

This is an demo repository to showcase Nango capabilities. Nango will automatically fetch Issues from this repo and display them in user's interactive demo. Using this simple custom code:

export default async function fetchData(nango: NangoSync) {
    // Fetch issues from GitHub.
    const res = await nango.get({ endpoint: '/repos/NangoHQ/interactive-demo/issues' });
    
    // Map issues to your preferred schema.
    const issues = res.data.map(issue => ({ id, title, url }));
    
    // Persist issues to the Nango cache.
    await nango.batchSave(issues, 'Issue');
}

Want to try yourself?

Register a free account at nango.dev and check the "Interactive Demo" page in your dashboard.

About

This is an demo repository to showcase Nango capabilities.

Resources

Stars

Watchers

Forks