Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
epl-fixtures
Advanced tools
Fixtures for Premier League clubs (Premier League, FA Cup, Capital One Cup, Champions League, Europa League)
npm install epl-fixtures --save
Get all upcoming matches
const Fixtures = require('epl-fixtures');
new Fixtures().all(function (err, matches) {
console.log(matches);
});
//=> [
//=> {
//=> time: '20:00',
//=> clubs: [ 'Liverpool', 'Chelsea' ],
//=> location: 'Anfield',
//=> date: 'Wednesday 11 May 2016',
//=> competition: 'Barclays Premier League'
//=> },
//=> {
//=> time: '15:00',
//=> clubs: [ 'Arsenal', 'Aston Villa' ],
//=> location: 'Emirates Stadium',
//=> date: 'Sunday 15 May 2016',
//=> competition: 'Barclays Premier League'
//=> }
//=> ]
Get upcoming matches for specific club
const Fixtures = require('epl-fixtures');
new Fixtures().club('man city', function (err, matches) {
console.log(matches);
});
//=> [
//=> {
//=> time: '19:45',
//=> clubs: [ 'Newcastle', 'Man City' ],
//=> location: 'St. James\' Park',
//=> date: 'Tuesday 19 April 2016',
//=> competition: 'Barclays Premier League'
//=> },
//=> {
//=> time: '12:45',
//=> clubs: [ 'Man City', 'Stoke' ],
//=> location: 'Etihad Stadium',
//=> date: 'Saturday 23 April 2016',
//=> competition: 'Barclays Premier League'
//=> }
//=> ]
MIT © Daniel Eckermann
FAQs
Fixtures for Premier League clubs
The npm package epl-fixtures receives a total of 1 weekly downloads. As such, epl-fixtures popularity was classified as not popular.
We found that epl-fixtures 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.