0.0.4 β€’ Published 11 months ago

pole-emploi v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

✨ Features:

  • Tiny size
  • Works in Node.js and in Browser
  • Built-in Typescript support

πŸ”§ Installation

npm i pole-emploi

🌐 Usage

Import pole-emploi module in your project and initialize it with your apiKey and apiSecret.

import PoleEmploi from "pole-emploi";

const PoleEmploiClient = new PoleEmploi({
    apiKey: "your api key",
    apiSecret: "your api secret"
})

PoleEmploiClient.search({theme: 6, 
                         natureContrat: "E2",
                         motsCles: "naval",
                        }).then((data) => {
    console.log(data)
})