
Product
A Fresh Look for the Socket Dashboard
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
bas-meteor-jwplayer
Advanced tools
Integrate a CDN hosted version of JWPlayer using your own license.
Integrate a CDN hosted version of JWPlayer using your own license.
NOTE: This version only works with JWPlayer v7
meteor npm install bas-meteor-jwplayer
Load globally:
import { JWPlayer } from 'bas-meteor-jwplayer';
JWPlayer.load('YOUR_KEY_HERE');
Or only on specific routes:
import { JWPlayer } from 'bas-meteor-jwplayer';
// Iron Router
Router.onBeforeAction(function() {
JWPlayer.load('YOUR_KEY_HERE');
this.next();
}, { only: ['route1', 'route2'] });
import { JWPlayer } from 'bas-meteor-jwplayer';
// Flow Router
FlowRouter.triggers.enter([JWPlayer.load('YOUR_KEY_HERE')], {
only: ['route1', 'route2']
});
Template HTML
<template name="myTemplate">
<div id="player"></div>
</template>
Template JS
import { JWPlayer } from 'bas-meteor-jwplayer';
// use JWPlayer.loaded() to reactively check that the lib is ready
Template.myTemplate.onRendered(function() {
this.autorun(function() {
if (JWPlayer.loaded) {
jwplayer('player').setup({
file: 'http://example.com/my-video.mp4',
width: '100%',
aspectratio: '16:9',
autostart: true
});
}
});
});
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
These amazing people have contributed code to this project:
If you wish you can contribute to the development of this project:
Contribute with your code
FAQs
Integrate a CDN hosted version of JWPlayer using your own license.
The npm package bas-meteor-jwplayer receives a total of 1 weekly downloads. As such, bas-meteor-jwplayer popularity was classified as not popular.
We found that bas-meteor-jwplayer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Product
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
Industry Insights
Terry O’Daniel, Head of Security at Amplitude, shares insights on building high-impact security teams, aligning with engineering, and why AI gives defenders a fighting chance.
Security News
MCP spec updated with structured tool output, stronger OAuth 2.1 security, resource indicators, and protocol cleanups for safer, more reliable AI workflows.