Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/matsumotory/mruby-simplehttp

SimpleHttp of iij/mruby support mruby/mruby using mruby-uv and mruby-http
https://github.com/matsumotory/mruby-simplehttp

Last synced: about 2 months ago
JSON representation

SimpleHttp of iij/mruby support mruby/mruby using mruby-uv and mruby-http

Awesome Lists containing this project

README

        

# SimpleHttp Class for mruby
Simple http or https connection class for mruby.

refactored SimpleHttp using mruby-polarssl and mruby-socket or mruby-uv

original code is iij/mruby

## install by mrbgems
- add conf.gem line to `build_config.rb`
```ruby
MRuby::Build.new do |conf|

# ... (snip) ...

conf.gem :git => 'https://github.com/matsumoto-r/mruby-simplehttp.git'
end
```

## example

```ruby
p SimpleHttp.new("http", "127.0.0.1", 80).request("GET", "/index.html", {'User-Agent' => "test-agent"})
```

# License
under the MIT License:

* http://www.opensource.org/licenses/mit-license.php