Socket
Socket
Sign inDemoInstall

peertube-client

Package Overview
Dependencies
15
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    peertube-client

client for peertube rest api


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
244 kB
Created
Weekly downloads
 

Changelog

Source

0.2.3 (2019-02-17)

Bug Fixes

  • auth: improve http helpers, make auth works again (cf93293)

<a name="0.2.2"></a>

Readme

Source

peertube-client

client for peertube rest api

Build Status NPM version Downloads Standard Version styled with prettier Conventional Commits

Installing

npm i peertube-client

Getting started

This library handle all the oauth process for you just give an instance host, a username and a password and you are ready to go.

For now video upload is not supported, i cannot achive to make it work, pr are more than welcome :).

Let's demonstrate simple usage with :

import { Peertube } from 'peertube-client';

const peertube = new Peertube({
  instance: 'peertube.fr',
  user: 'jonsnow',
  password: 'foo',
});

const main = async () => {
  try {
    const me = await peertube.whoAmI();
    const videos = await peertube.getVideos();
    const video = await peertube.getVideo(2345);
    /* ... */
  } catch (err) {
    console.error(err);
  }
};

Publishing

Execute yarn release which will handle following tasks:

  • bump package version and git tag
  • update/(create if it doesn't exist) CHANGELOG.md
  • push to github master branch + push tags
  • publish build packages to npm

releases are handled by awesome standard-version

Pre-release

  • To get from 1.1.2 to 1.1.2-0:

npm run release --prerelease

  • Alpha: To get from 1.1.2 to 1.1.2-alpha.0:

npm run release --prerelease alpha

  • Beta: To get from 1.1.2 to 1.1.2-beta.0:

npm run release --prerelease beta

Dry run mode

See what commands would be run, without committing to git or updating files

npm run release --dry-run

Check what files are gonna be published to npm

  • npm run pack OR npm run release:preflight which will create a tarball with everything that would get published to NPM

Tests

Test are written and run via Jest 💪

npm test
# OR
npm run test:watch

Style guide

Style guides are enforced by robots, I meant prettier and tslint of course 🤖 , so they'll let you know if you screwed something, but most of the time, they'll autofix things for you. Magic right ?

Style guide npm scripts

#Format and fix lint errors
npm run style:fix

Generate documentation

npm run docs

Commit ( via commitizen )

  • this is preferred way how to create conventional-changelog valid commits
  • if you prefer your custom tool we provide a commit hook linter which will error out, it you provide invalid commit message
  • if you are in rush and just wanna skip commit message validation just prefix your message with WIP: something done ( if you do this please squash your work when you're done with proper commit message so standard-version can create Changelog and bump version of your library appropriately )

npm run commit - will invoke commitizen CLI

Troubleshooting

Licensing

MIT as always

Keywords

FAQs

Last updated on 17 Feb 2019

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