Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@11ty/eleventy-data-transistor-fm
Advanced tools
An Eleventy data plugin for transistor.fm episodes.
API Docs: https://developers.transistor.fm/#episodes
npm install @11ty/eleventy-data-transistor-fm
const TransistorFmPlugin = require("@11ty/eleventy-data-transistor-fm");
module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(TransistorFmPlugin);
};
By default, the episodes are stored in transistorfm.episodes
(this is configurable).
{% for episode in transistorfm.episodes %}
{{ episode.title }}
{% endfor %}
By default, a Transistor FM API key is optional. If you want to use one, create a .env
file and add an entry for TRANSISTOR_FM_API_KEY
:
TRANSISTOR_FM_API_KEY=This is my key
You can make the key required or even change the name of the environment variable by passing options to your plugin.
const TransistorFmPlugin = require("@11ty/eleventy-data-transistor-fm");
module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(TransistorFmPlugin, {
envApiKey: "TRANSISTOR_FM_API_KEY", // the name of the environment variable for the API key
envApiKeyRequired: false, // fail if the environment variable is missing?
data: "transistorfm.episodes", // where in Eleventy to store the return data
});
};
FAQs
An Eleventy data plugin for transistor.fm episodes.
The npm package @11ty/eleventy-data-transistor-fm receives a total of 2 weekly downloads. As such, @11ty/eleventy-data-transistor-fm popularity was classified as not popular.
We found that @11ty/eleventy-data-transistor-fm 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.