1.0.5 • Published 2 months ago

noembed v1.0.5

Weekly downloads
-
License
OpenSource
Repository
github
Last release
2 months ago

Official noembed client for NodeJS

This client currently supports all the https://noembed.com/#supported-sites

A development is happening and updates will be done to the plugin to work as a standalone without using noembed.com

Usage

const noEmbed = require('noembed');

const youtubeUrl = 'https://www.youtube.com/watch?v=ePM-6fWk3c0';

noEmbed.get(youtubeUrl)
    .then(embeddedContent => {
        console.log('Embedded Content:');
        console.log(embeddedContent);
    })
    .catch(error => {
        console.error('Error:', error.message);
    });

noEmbed.providers()
    .then(embeddedContent => {
        console.log('Providers:');
        console.log(embeddedContent);
    })
    .catch(error => {
        console.error('Error:', error.message);
    });

noEmbed.html(youtubeUrl)
    .then(htmlContent => {
        console.log('HTML:');
        console.log(htmlContent);
    })
    .catch(error => {
        console.error('Error:', error.message);
    });

Community & Contribution

Github

Repository link : https://github.com/gilzonme/noembed

Discord

Join and discuss with us on discord : https://discord.gg/zSHcgHBjKp

1.0.5

2 months ago

1.0.4

3 months ago

1.0.3

3 months ago

1.0.2

3 months ago

1.0.1

3 months ago

1.0.0

4 months ago

0.0.8

4 months ago

0.0.5

4 months ago

0.0.7

4 months ago

0.0.6

4 months ago

0.0.4-2

4 months ago

0.0.4-1

4 months ago

0.0.4

4 months ago

0.0.3-3

4 months ago

0.0.3-2

4 months ago

0.0.3-1

4 months ago

0.0.3

4 months ago

0.0.2-4

4 months ago

0.0.2-3

4 months ago

0.0.2-2

4 months ago

0.0.2

4 months ago

0.0.1

4 months ago