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.
rf2-results-parser
Advanced tools
This is a small package that will allow you to transform a results file generated by the popular racing sim, rFactor2.
This is a small package that will allow you to transform a results file generated by the popular racing sim, rFactor2.
As of today the file generated is given to us a very heavy XML document, which is usable, but at the same time probably gives us more information than we need at any given time.
This utility will allow you to pass in a results file and it will parse it into a usable JSON format for you whilst also getting rid of any cruff you may not need right away.
NPM
npm install rf2-session-parser --save
Yarn
yarn add rf2-session-parser
Import (CommonJS)
const parseResults = require('rf2-results-parser');
Import (ES6)
import { parseResults } from 'rf2-results-parser';
Using the funtion
How you supply it the file is up to you, but chances are you will be using it within an API. Here is an example when using Node's FS module:
fs.readFile('./race-example.xml', (err, data) => {
const resultsData = parseResults(data);
console.log(parsedData);
});
For now the function only takes 1 arguement which is the data from the file you supply. An arguement for certain options will be added in due course.
Here is an example response for a race session:
{ event:
{ name: 'GPVWC SL Lights Round 7',
location: 'Istanbul Park (2019)',
session: 'Race' },
result:
[ { position: '1',
name: 'Cristian Pasqual',
team: 'TR Bluvos Motorsport',
car: 'GPVWC Superleague Lights 2019',
raceTime: '01:07:28.205',
lapsCompleted: '47',
gapToFirst: null,
pitstops: '2' },
{ position: '2',
name: 'Mark Hutchinson',
team: 'Idos Motorsport',
car: 'GPVWC Superleague Lights 2019',
raceTime: '01:07:28.599',
lapsCompleted: '47',
gapToFirst: '00:00:00.393',
pitstops: '2' },
{ position: '3',
name: 'Laurent Keersmaekers',
team: 'Holland Racing Team',
car: 'GPVWC Superleague Lights 2019',
raceTime: '01:07:36.392',
lapsCompleted: '47',
gapToFirst: '00:00:08.186',
pitstops: '2' },
{ position: '4',
name: 'Michi Hoyer',
team: 'Red Arrow Racing',
car: 'GPVWC Superleague Lights 2019',
raceTime: '01:07:41.912',
lapsCompleted: '47',
gapToFirst: '00:00:13.707',
pitstops: '2' },
{ position: '5',
name: 'Matthew Williams ',
team: 'Red Arrow Racing',
car: 'GPVWC Superleague Lights 2019',
raceTime: '01:07:45.566',
lapsCompleted: '47',
gapToFirst: '00:00:17.361',
pitstops: '2' },
{ position: '6',
name: 'Noah Chilla',
team: 'Cenobite Motorsports',
car: 'GPVWC Superleague Lights 2019',
raceTime: 'DNF',
lapsCompleted: '38',
gapToFirst: 'DNF',
pitstops: '1' },
Type: object
Description: Will apply a points value to each of the drivers results data set based on where they have finished
Usage:
const points = {
"1": 10,
"2": 8,
"3": 6,
"4": 4,
"5": 2,
"6": 1,
}
const resultsData = parseResults(data, { pointsAwarded: points });
Response:
{ position: '5',
name: 'Matthew Williams ',
team: 'Red Arrow Racing',
car: 'GPVWC Superleague Lights 2019',
raceTime: '01:07:45.566',
lapsCompleted: '47',
gapToFirst: '00:00:17.361',
pitstops: '2',
pointsAwarded: 2
},
NOTE: This will only work for race results
FAQs
This is a small package that will allow you to transform a results file generated by the popular racing sim, rFactor2.
The npm package rf2-results-parser receives a total of 0 weekly downloads. As such, rf2-results-parser popularity was classified as not popular.
We found that rf2-results-parser 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.