Youtube music and video downloader

security.js 233B

123456
  1. import { Meteor } from 'meteor/meteor';
  2. if (Meteor.isServer) {
  3. if (!process.env.API_KEY) throw new Error("You must fill the API_KEY env variable !");
  4. Meteor.methods({ 'security.key'() { return { key: process.env.API_KEY}; } });
  5. }