All Projects → 720kb → yogurl

720kb / yogurl

Licence: MIT license
Serve files and code over HTTP in one command. The CLI for http://yogurl.io

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to yogurl

Pomf
Simple file uploading and sharing
Stars: ✭ 535 (+1088.89%)
Mutual labels:  files, file-sharing
kipp
A flexible file storage server
Stars: ✭ 33 (-26.67%)
Mutual labels:  files, file-sharing
lolisafe
Blazing fast file uploader and awesome bunker written in node! 🚀
Stars: ✭ 181 (+302.22%)
Mutual labels:  files, file-sharing
Filite
A simple, light and standalone pastebin, URL shortener and file-sharing service
Stars: ✭ 125 (+177.78%)
Mutual labels:  files, file-sharing
vue-link
One component to link them all 🔗
Stars: ✭ 65 (+44.44%)
Mutual labels:  link
sortr.py
sort files using python
Stars: ✭ 15 (-66.67%)
Mutual labels:  files
yii2-linkable-behavior
Yii2 behavior to help creating urls easier
Stars: ✭ 12 (-73.33%)
Mutual labels:  urls
django-s3file
A lightweight file upload input for Django and Amazon S3
Stars: ✭ 66 (+46.67%)
Mutual labels:  files
go-storage
A vendor-neutral storage library for Golang: Write once, run on every storage service.
Stars: ✭ 387 (+760%)
Mutual labels:  files
browser-resources
A Collection of official Resources/Status/Issues for browsers.
Stars: ✭ 127 (+182.22%)
Mutual labels:  link
filestack-ios
Official iOS SDK for Filestack - API and content management system that makes it easy to add powerful file uploading and transformation capabilities to any web or mobile application.
Stars: ✭ 44 (-2.22%)
Mutual labels:  files
fetchurls
A bash script to spider a site, follow links, and fetch urls (with built-in filtering) into a generated text file.
Stars: ✭ 97 (+115.56%)
Mutual labels:  urls
fibr
Web File Browser
Stars: ✭ 37 (-17.78%)
Mutual labels:  file-sharing
link text
Easy to use text widget for Flutter apps, which converts inlined urls into working, clickable links
Stars: ✭ 20 (-55.56%)
Mutual labels:  link
ipfs-chat
Real-time P2P messenger using go-ipfs pubsub. TUI. End-to-end encrypted texting & file-sharing. NAT traversal.
Stars: ✭ 84 (+86.67%)
Mutual labels:  file-sharing
cpomf
Pomf API compatible file host written in Crystal - The software behind nya.is.
Stars: ✭ 36 (-20%)
Mutual labels:  file-sharing
BinaryStream
BinaryStream - a writer and reader for binary data. Best replacement for pack()/unpack().
Stars: ✭ 44 (-2.22%)
Mutual labels:  files
vscode-fileutils
Visual Studio Code Extension
Stars: ✭ 138 (+206.67%)
Mutual labels:  files
luufs
Lazy man's, user-mode union file system
Stars: ✭ 28 (-37.78%)
Mutual labels:  files
hostr
⤴️ Share anything. Simply.
Stars: ✭ 18 (-60%)
Mutual labels:  file-sharing

Serve your files and code over HTTP in one command.



What's Yogurl?

Yogurl is the simple command line tool for Yogurl.io

It can be used as a CLI command or as a Node dependency if you prefer.

Requirements

Node.js v5+

CLI Installation

npm install -g yogurl

CLI Usage

$ yogurl <source> [ext]

source: A valid file path or code string

ext: A valid output extension available

Yogurlify a file

$ yogurl path/to/file.js

Yogurlify a file to new extension

$ yogurl path/to/file.txt js

Yogurlify a code string

$ yogurl ".yogurl{ display:yogurl; }" css

Node Usage

Installation

$ npm install yogurl --save

Yogurlify a file

const Yogurl = require('yogurl');

Yogurl.upload('/path/to/file.json', 'json').then((data) => {
  //file is ready
  console.log(data, '');
  console.log(`File is ready at: ${data.data}`);

}).catch((err) => {
  //error
  console.log(err);
});

Yogurlify a code string

const Yogurl = require('yogurl');

Yogurl.upload("var x = 'yogurlify a javascript var';", 'js').then((data) => {
  //file is ready
  console.log(data, '');
  console.log(`File is ready at: ${data.data}`);

}).catch((err) => {
  //error
  console.log(err);
});

Available Output File Extensions

.js

.css

.scss

.map

.json

.... and others to come!

Available Input File Extensions

ANY (supposed)

Why Yogurl?

Yogurl has been developed with one simple goal: urlify code and files as quick as possible. It is built for development purposes, it's not really recommended to use it in a production environment, yogurl urls gets deleted after some time, so that you don't have to take care about them.

Since Yogurl is not backed by any sponsor or funds of any kind: we apologize for any trouble/problem/issue that could eventually happen.

Please don't spam it and use it with moderation, Yogurl is your friend.

Contact Yogurl

Feel free to open an issue or contact us on twitter or come chat on Gitter

Contributing

We are much grateful if you help us to grow and improve the project. Contribute by forking, opening issues, pull requests or whatever.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].