0.0.3 β’ Published 3 years ago
pole-emploi v0.0.3
β¨ 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)
})