https://github.com/LuxChanLu/moleculer-insee-sirene
Microservice for https://www.sirene.fr/sirene/public/static/api
https://github.com/LuxChanLu/moleculer-insee-sirene
insee javascript moleculer moleculerjs
Last synced: 21 days ago
JSON representation
Microservice for https://www.sirene.fr/sirene/public/static/api
- Host: GitHub
- URL: https://github.com/LuxChanLu/moleculer-insee-sirene
- Owner: LuxChanLu
- License: mit
- Created: 2019-04-27T15:49:54.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T20:26:16.000Z (over 2 years ago)
- Last Synced: 2025-04-19T14:40:19.930Z (24 days ago)
- Topics: insee, javascript, moleculer, moleculerjs
- Language: JavaScript
- Homepage:
- Size: 876 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-moleculer - moleculer-insee-sirene - Service for [INSEE Sirene API](https://api.insee.fr/catalogue/). An API with info about all French companies (Services / Others)
README
# moleculer-insee-sirene
[](https://travis-ci.org/YourSoftRun/moleculer-insee-sirene)
[](https://coveralls.io/github/YourSoftRun/moleculer-insee-sirene?branch=master)
[](https://www.codacy.com/app/Hugome/moleculer-insee-sirene?utm_source=github.com&utm_medium=referral&utm_content=YourSoftRun/moleculer-insee-sirene&utm_campaign=Badge_Grade)
[](https://codeclimate.com/github/YourSoftRun/moleculer-insee-sirene/maintainability)
[](https://david-dm.org/YourSoftRun/moleculer-insee-sirene)
[](https://snyk.io/test/github/YourSoftRun/moleculer-insee-sirene)[](https://www.npmjs.com/package/moleculer-insee-sirene)
[](https://app.fossa.com/projects/git%2Bgithub.com%2FYourSoftRun%2Fmoleculer-insee-sirene?ref=badge_shield)## How to use it
```js
const InseeSireneMixin = require('moleculer-insee-sirene')module.exports = {
mixins: [InseeSireneMixin],
settings: {
/** @type {Object} Keys given by https://api.insee.fr/catalogue/site/themes/wso2/subthemes/insee/pages/item-info.jag?name=Sirene&version=V3&provider=insee. */
keys: {
/** @type {String} Consumer key given by INSEE */
key: '',
/** @type {String} Consumer secret given by INSEE */
secret: ''
}
}
}
```