Skip to content

adrianovalente/skyline-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

skyline-js

Build Status

Check out your Skyline inbox with native Javascript

Skyline is a platform provided by the Nexxera Group to receive and send messages. This project is a non-official Node.JS package that implements an interface to its API, allowing you to check you inbox without having to run any binary file.

Getting Started

To add this module as a dependency to your project, you can simply npm install it:

npm install --save skyline-js

Here is an example of how to use this tool to get your inbox messages:

import Skyline from 'skyline-js'

const skyline = new Skyline({
  username: 'my-skyline-login',
  password: 'my-skyline-password'
})

skyline.getMessages({
  from: '2018-01-02', // default is today
  to: '2018-01-04'    // default is today,

  onlyDownloadHeaders: true // default is false
}).then(messages => {
  console.log(messages)
})

Contributing

This project is licensed under the MIT license. Please feel free to open issues and submitting pull requests!

About

Skyline interface implemented in Node.JS

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published