Socket
Socket
Sign inDemoInstall

devshare

Package Overview
Dependencies
7
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    devshare

Library to communicate with devshare development sharing platform.


Version published
Weekly downloads
23
increased by666.67%
Maintainers
1
Install size
99.5 MB
Created
Weekly downloads
 

Readme

Source

devshare

NPM version NPM downloads Build Status Dependency Status Code Climate Code Coverage License Code Style

Gitter

Client library to simplify communication with the devShare service

Features

  • File system interaction
  • Projects management
  • Users management
  • Cloud interface

Getting Started

devShare is universal, so it can be used client-side or server-side.

NPM

  1. Install: npm install --save devshare

  2. Include and use devshare:

ES6
```javascript

import devshare from 'devshare' devshare.login(auth) .then(user => console.log('Successful login', user)) .catch(error => console.error('Error logging in', error))

```
ES5
```javascript

var devshare = require('devshare') devshare.login(auth) .then(function (user) { console.log('Successful login', user) }) .catch(function (error) { console.error('Error logging in', error) }) ```

API Documentation

Keywords

FAQs

Last updated on 30 May 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc