https://github.com/danielstern/hris-integration
A Simple Demonstration of Integrating with Any HRIS
https://github.com/danielstern/hris-integration
Last synced: about 1 year ago
JSON representation
A Simple Demonstration of Integrating with Any HRIS
- Host: GitHub
- URL: https://github.com/danielstern/hris-integration
- Owner: danielstern
- Created: 2022-08-23T16:26:03.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-23T16:26:44.000Z (almost 4 years ago)
- Last Synced: 2025-02-10T15:50:56.725Z (over 1 year ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
This is a project which demonstrates a universal HRIS consumer.
## Usage
1. Start the spec HRIS server:
`npm run hris`
This opens an HRIS server at `http://localhost:12042`, eg: `http://localhost:12042/employees?token=TOK-001`.
2. Run the scraper
`npm test`
### Sample Output
```
Integration successful. Integrated data is as follows:
[
{
"_id": "EMP001",
"name": "Tyrion Lannister",
"role": "President",
"changed": false
},
{
"_id": "EMP002",
"name": "John Snow",
"role": "Janitor",
"changed": false
}
]
```