https://github.com/opentable/grunt-put
pipe a file to a http endpoint
https://github.com/opentable/grunt-put
Last synced: over 1 year ago
JSON representation
pipe a file to a http endpoint
- Host: GitHub
- URL: https://github.com/opentable/grunt-put
- Owner: opentable
- License: mit
- Created: 2015-03-12T15:52:41.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-21T06:12:52.000Z (over 10 years ago)
- Last Synced: 2025-03-01T13:48:54.197Z (over 1 year ago)
- Language: JavaScript
- Size: 102 KB
- Stars: 0
- Watchers: 17
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-put
[](https://travis-ci.org/opentable/grunt-put) [](http://badge.fury.io/js/grunt-put) 
Does exactly what it says on the tin. Pipe a file to a http endpoint. Simple stuff.
installation:
```npm install --save grunt-put```
usage:
```
grunt.initConfig({
'put':{
options: {
filename: 'foo/myfile.txt'
destination: 'http://myserver.com/foo/bar/myfile.txt'
}
}
});
```