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!)
- Host: GitHub
- URL: https://github.com/foozzi/teknik-paste
- Owner: foozzi
- Created: 2016-11-21T17:07:04.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-21T17:33:53.000Z (over 9 years ago)
- Last Synced: 2025-10-28T17:50:30.751Z (8 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# teknik-paste

## 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
```