1.0.5 • Published 1 year ago

noembed v1.0.5

Weekly downloads
-
License
OpenSource
Repository
github
Last release
1 year 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

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.0.8

1 year ago

0.0.5

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.4-2

1 year ago

0.0.4-1

1 year ago

0.0.4

1 year ago

0.0.3-3

2 years ago

0.0.3-2

2 years ago

0.0.3-1

2 years ago

0.0.3

2 years ago

0.0.2-4

2 years ago

0.0.2-3

2 years ago

0.0.2-2

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago