An open API service indexing awesome lists of open source software.

https://github.com/foozzi/teknik-paste

Simple package for paste your code to https://paste.teknik.io (from guest and without limits!)
https://github.com/foozzi/teknik-paste

Last synced: 5 months ago
JSON representation

Simple package for paste your code to https://paste.teknik.io (from guest and without limits!)

Awesome Lists containing this project

README

          

# teknik-paste

![teknik](https://teknik-5b3f.kxcdn.com/Images/logo-black.svg)

## Install
```bash
$ npm install teknik-paste
```

## How to
```js
var tpaste = require('teknik-paste');
tpaste.paste({title: 'test', code: 'test pbin'}, function(link, err){
if(err){
console.log(err)
}
console.log(link)
});
```
## Test
```bash
$ npm test
```