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

https://github.com/gedex/yasnip

Yet Another Snip
https://github.com/gedex/yasnip

Last synced: over 1 year ago
JSON representation

Yet Another Snip

Awesome Lists containing this project

README

          

YASnip, Yet Another Snip
============

This repository is intended as my attempt to accomplish Snip from [Nikhil's Article](http://howtonode.org/node-redis-fun).
The pastebin-like idea is still the same:

1. You visit http://localhost:3000/add
2. Post the snippet, and choose the language
3. Get a unique URL http://localhost/id

Here, nerve is replaced with express and redis-node-client is replaced with node_redis.

## Running YASnip

Make sure pygmentize is available in your PATH. Install dependencies in package.json:
````bash
npm install
````

Run `redis-server` and then run YASnip:
````js
node app.js
````

## Todo

* Show line number from pygmentize
* Save creation datetime
* Index page should list newest/popular snips. Require creation datetime to be saved (see above)
* Use hash to store snip and its attributes. Use HMSET and HMGET to set and retrieve the hash
* Copy/duplicate snip feature
* Use config module to evaluate running env
* Once config is used, app specific feature can be toggled and/or configured
in config.js module. Things like comment provision (Disqus, FB Comment, etc),
switch from pygmentize command-line to http://pygments.appspot.com/, etc
* Content negoitation requesting `text/javascript; charset=utf-8` should receive
javascript response for embedding (Gist is the best example)
* YASnip API. References:
* http://dpaste.com/api/v1/
* http://developer.github.com/v3/gists/
* YASnip clients. References:
* https://github.com/zodman/dpaster
* http://www.vim.org/scripts/script.php?script_id=2519
* https://github.com/defunkt/gist

## LICENSE - "MIT License"

Copyright (c) 2012 Akeda Bagus

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.