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 🙏

© 2024 – Pkg Stats / Ryan Hefner

leforem-node

v0.0.3

Published

a wrapper api for leforem API

Downloads

6

Readme

leForem Api Node.js Wrapper

Synopsis

This projects helps you to make HTTP requests to the Forem API.

Installation

npm install leforem-node
var foremclient = require('leforem-node');
// Public API

var client = new foremclient();

Leforem API

The forem Api is the open API for building cool stuff with jobs data.

Forem api datasets are accessible by developers through an HTTP REST API.

API Index

The API is not available

Methods

search

Response

[ 
  { author: 'anonymous',
      contractType: 'N',
      description: '<acse:Abstract xmlns="http://www.acse.be/portal"><P>Dans le cadre de nos projets clients et du renforcement de nos équipes, nous recherchons actuellement des Développeurs Java juniors et expérimentés afin d\'intervenir sur les missions suivantes :<BR/>Participer à l\'analyse et à la conception technique<BR/>Développer et maintenir les applications<BR/>Réaliser des tests et participer aux phases de livraison et documentation                              </P></acse:Abstract>',
      id: 'I30133506',
      languageCodes: [],
      lastPublication: 1521470306000,
      lastUpdate: '19 mars 2018',
      location: 'NAMUR',
      nbJobs: '1',
      owner: 'Le Forem',
      permisCodes: [],
      ref: '2242853',
      title: 'DÉVELOPPEURS JAVA SENIORS ET JUNIORS (H/F) [NAMUR]',
      xpInMonth: 0 
    } 
]

Examples Request: /search

param: 
location: Information about region : 
Value Region  : WAL(Wallonie)VLG(Région Flammande),BE-WLG(Région Liege),BE-VAN,(Région Anvers),BE-WNA(Régioun Namur),BE-WHT(Région Hainaut),BE-WBR(Brabant-Wallon),BE-VWV(Flandre Occidental),BE-VOV(Flandre Orientale),BE-VLI(Limbourg)
Value Ville :DIN(Dinant),PHI(Philippeville),VIR(Virton),NEU(Neufchateau),BAS(Bastogne),BE-WLX(Luxembourg),WAR(Waremme),VER(Verviers),HUY(HUY),LIE(Liege),TOU(Tournai),THU(Thuin),SOI(Soignies),MOU(Mouscron),HAS(Hasselt),GAN(GAND),OOS(Ostende),AAL(Alost),IEP(Ypres),KOR(Courtrai),BRG(Bruges),LEU(Louvain),MEC(Malines),TUR(Turnhout),SIN(Saint-Nicolas),ROE(Roulers),TON(Tongres)

query:Information about jobs
resultat: number of resultat per page
page : number of page
client.search(resultat,page,q,location,function (error, data,count,page,resultat) {
  if(error) console.log("E!",error)
  console.dir(data);
});

Stream

Response

[ 
  { author: 'anonymous',
      contractType: 'N',
      description: '<acse:Abstract xmlns="http://www.acse.be/portal"><P>Dans le cadre de nos projets clients et du renforcement de nos équipes, nous recherchons actuellement des Développeurs Java juniors et expérimentés afin d\'intervenir sur les missions suivantes :<BR/>Participer à l\'analyse et à la conception technique<BR/>Développer et maintenir les applications<BR/>Réaliser des tests et participer aux phases de livraison et documentation                              </P></acse:Abstract>',
      id: 'I30133506',
      languageCodes: [],
      lastPublication: 1521470306000,
      lastUpdate: '19 mars 2018',
      location: 'NAMUR',
      nbJobs: '1',
      owner: 'Le Forem',
      permisCodes: [],
      ref: '2242853',
      title: 'DÉVELOPPEURS JAVA SENIORS ET JUNIORS (H/F) [NAMUR]',
      xpInMonth: 0 
    } 
]

Examples Request: /stream (only last 10 offers with timeout 30s)

param: 
location: Information about region : 
Value Region  : WAL(Wallonie)VLG(Région Flammande),BE-WLG(Région Liege),BE-VAN,(Région Anvers),BE-WNA(Régioun Namur),BE-WHT(Région Hainaut),BE-WBR(Brabant-Wallon),BE-VWV(Flandre Occidental),BE-VOV(Flandre Orientale),BE-VLI(Limbourg)
Value Ville :DIN(Dinant),PHI(Philippeville),VIR(Virton),NEU(Neufchateau),BAS(Bastogne),BE-WLX(Luxembourg),WAR(Waremme),VER(Verviers),HUY(HUY),LIE(Liege),TOU(Tournai),THU(Thuin),SOI(Soignies),MOU(Mouscron),HAS(Hasselt),GAN(GAND),OOS(Ostende),AAL(Alost),IEP(Ypres),KOR(Courtrai),BRG(Bruges),LEU(Louvain),MEC(Malines),TUR(Turnhout),SIN(Saint-Nicolas),ROE(Roulers),TON(Tongres)

query:Information about jobs
client.stream(q,location,function (data,count,timestamp) {
  console.dir(data);
});

API Reference

https://www.leforem.be

Contributors

Anis Haboubi

License

See LICENSE.txt for more info.