npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@gasolinaradar/repsol-collector

v1.0.1

Published

Collector for the Repsol fuel station finder (Spain) returning normalized fuel stations for enrichment

Readme

@gasolinaradar/repsol-collector

Node.js collector para el buscador de estaciones de servicio de Repsol (España). Devuelve un array de estaciones normalizado, listo para enriquecer las fuentes primarias (p. ej. MITERD) vía matching.enrichStations.

Collector de Node.js para el buscador de estaciones de servicio de Repsol (España). Devuelve un array de estaciones normalizado listo para enriquecer las fuentes primarias (p. ej. MITERD) mediante matching.enrichStations.

Fuente de datos / Data source

El buscador de Repsol es una SPA (AEM) en https://www.repsol.es/buscador-eess-y-puntos-de-recarga/. Cada entidad (estaciones, recarga, oficinas) se carga mediante un único POST por lote al endpoint interno:

POST https://www.repsol.es/bin/repsol/searchmiddleware/station-search.json
     ?action=search&idioma=ES&tipo=1

Referer: https://www.repsol.es/buscador-eess-y-puntos-de-recarga/, Origin: https://www.repsol.es.

  • action=search devuelve todas las estaciones de un tipo en una sola respuesta.
  • tipo=1 = España (default); tipo=2 = Portugal; tipo=1,2 = ambos.
  • Respuesta: { eess: { count, items: [...] }, recarga: {...}, ... }. Las estaciones de servicio son eess.items (~3147 estaciones en España). Cada item incluye id, nombre, x/y (lon/lat), direccion, cp, localidad, provincia, pais, horario/horarios y productos[] con precio/fecha.

⚠️ Es un endpoint interno de una SPA: funciona con una llamada HTTP cruda (verificado con axios), pero al ser un endpoint no documentado puede cambiar de forma o aplicar rate-limiting. Si en producción empezara a devolver 4xx, se puede reutilizar una sesión o cookies de navegador obtenidas previamente.

npm install @gasolinaradar/repsol-collector

Quick start / Inicio rápido

const { createRepsolCollector } = require('@gasolinaradar/repsol-collector');

const collector = createRepsolCollector({ logger: console });
const stations = await collector.fetch({ reportProgress: (p) => {} });

// Opcional: apuntar a otro host/endpoint o cambiar el tipo (país).
const collector = createRepsolCollector({
  logger: console,
  searchUrl: 'https://www.repsol.es/bin/repsol/searchmiddleware/station-search.json',
  tipo: '1', // '1' España, '2' Portugal, '1,2' ambos
});

Contract / Contrato

{ name: 'repsol', country: 'ES', fetch(context) }

Cada estación normalizada sigue la forma compartida de @gasolinaradar:

{
  source: 'repsol', country: 'ES', sourceStationId,
  name, address, municipality, province, postalCode,
  schedule, services,
  location: { type: 'Point', coordinates: [lon, lat] },
  prices, lastUpdated,
}
  • location.coordinates es GeoJSON [lon, lat] (de los campos x/y del payload).
  • prices mapea los combustibles con precio a { fuelSlug: amount } (p. ej. { efitec95: 1.799, diéle: 1.949 }), tolerando decimales con coma española.
  • schedule usa el texto horario o formatea el array horarios por día.
  • services recoge la disponibilidad de productos del item (productos[].producto).
  • lastUpdated se toma de la fecha de precio más reciente, si existe.

Tests

npm test
npm run test:live   # opcional; golpea el endpoint real de Repsol

Legal / Legal

Los datos pertenecen a Repsol y se proporcionan "tal cual".

License / Licencia

MIT. See LICENSE.