3.0.0 • Published 10 years ago
webremix v3.0.0
Webremix
Converts your media urls and links to embedded HTML.
Installation
npm install webremixHow to Use
var remix = require('webremix');
remix.generate('http://amazinggifs.com/cats.gif look at these amazing cats!', function(err, resp) {
console.log(resp);
});Output becomes:
<div class="image-wrapper">
<a href="http://amazinggifs.com/cats.gif" target="_blank">
<img src="http://amazinggifs.com/cats.gif">
</a>
</div> look at these amazing cats!Video size options
If you want to pass in a different width and height for Youtube/Vimeo, pass in the following:
var options = {
width: 500,
height: 200
};
remix.generate('https://www.youtube.com/watch?v=XYc6ZiV07ZE', options, function(err, resp) {
console.log(resp);
});Supported media
- Regular links (http://whatever.org or whatever.org)
- Links with image extensions of jpg|gif|png|jpeg
- Instagram urls
- Youtube urls
- Vimeo urls
- Soundcloud urls (will fall back to a regular link if the author has sharing disabled)
Testing
npm test3.0.0
10 years ago
2.0.0
10 years ago
1.2.6
10 years ago
1.2.5
10 years ago
1.2.4
10 years ago
1.2.3
10 years ago
1.2.2
10 years ago
1.2.0
10 years ago
1.1.0
11 years ago
1.0.2
12 years ago
1.0.1
12 years ago
1.0.0
12 years ago
0.0.6
13 years ago
0.0.5
13 years ago
0.0.4
14 years ago
0.0.3
14 years ago
0.0.2
14 years ago
0.0.1
14 years ago