Git Product home page Git Product logo

hastebin's Introduction

hastebin

CLI tool that uploads text to hastebin. (Basically a Node.js version of haste-client)

Installation

To install this package globally using NPM, run: npm install -g hastebin

To try this package out before you install, try npx hastebin.

To install this package locally, try npm i hastebin. You can then access the hastebin client via NPM scripts.

Usage

Via the Shell

$ hastebin --help
Usage: <other-command> | hastebin
or:    hastebin [file]

Examples:
  echo "Hello" | hastebin    upload text from stdin
  hastebin text.txt          upload text from a file


Options:
  -r, --raw   Output the link to the raw text
  -h, --help  Show help                      

Example

$ echo "hi" | hastebin
http://hastebin.com/ilitixevat

Via the JavaScript API

var hastebin = require('hastebin')

hastebin.createPaste('content for your paste', {
  raw: true,
  contentType: 'text/plain',
  server: 'https://hastebin.com'
}, /* options for the 'got' module here */ {})
  .then(function (urlToPaste) {})
  .catch(function (requestError) {})

Custom server

By default, hastebin will point to http://hastebin.com. You can set the HASTE_SERVER environment variable to configure this.

alias work_haste="HASTE_SERVER=http://something.com haste"

Building

To compile the source just run npm run build.

License

This module is licensed under the MIT license.

hastebin's People

Contributors

dependabot[bot] avatar rahatarmanahmed avatar resynth1943 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

hastebin's Issues

Action required: Greenkeeper could not be activated 🚨

🚨 You need to enable Continuous Integration on all branches of this repository. 🚨

To enable Greenkeeper, you need to make sure that a commit status is reported on all branches. This is required by Greenkeeper because we are using your CI build statuses to figure out when to notify you about breaking changes.

Since we did not receive a CI status on the greenkeeper/initial branch, we assume that you still need to configure it.

If you have already set up a CI for this repository, you might need to check your configuration. Make sure it will run on all new branches. If you don’t want it to run on every branch, you can whitelist branches starting with greenkeeper/.

We recommend using Travis CI, but Greenkeeper will work with every other CI service as well.

Error: Internal Server Error

Everytime and with every node package I tried, I'm getting an internal server error.
This is my hastebin code:
const haste = await hastebin.createPaste(loggedContentString, { raw: true, contentType: 'text/plain', server: 'https://hastebin.com'})

ParseError: Unexpected token '<' at 1:1 in https://hastebin.com/documents

When testing your program by running

echo "test" | hastebin

I am getting this error:

(node:24913) UnhandledPromiseRejectionWarning: ParseError: Unexpected token '<' at 1:1 in https://hastebin.com/documents
<!DOCTYPE html>
^
    at /usr/lib/node_modules/hastebin/node_modules/got/index.js:120:14
    at BufferStream.<anonymous> (/usr/lib/node_modules/hastebin/node_modules/read-all-stream/index.js:64:3)
    at BufferStream.emit (events.js:327:22)
    at finishMaybe (/usr/lib/node_modules/hastebin/node_modules/readable-stream/lib/_stream_writable.js:630:14)
    at afterWrite (/usr/lib/node_modules/hastebin/node_modules/readable-stream/lib/_stream_writable.js:492:3)
    at processTicksAndRejections (internal/process/task_queues.js:82:21)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:24913) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:24913) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

The same via the node api

Error when compiling TS

node_modules/hastebin/index.d.ts:1:10 - error TS2724: '"got"' has no exported member named 'GotOptions'. Did you mean 'Options'?

1 import { GotOptions } from "got";

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.