UNPKG
httpsnippet-lite
Version:
latest (3.0.5)
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
HTTP Request snippet generator for *most* languages
github.com/P0lip/httpsnippet
P0lip/httpsnippet
httpsnippet-lite
/
dist
/
esm
/
targets
/
shell
/
target.js
17 lines
(16 loc)
•
337 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{ curl }
from
'./curl/client.js'
;
import
{ httpie }
from
'./httpie/client.js'
;
import
{ wget }
from
'./wget/client.js'
;
export
const
shell = {
info
: {
key
:
'shell'
,
title
:
'Shell'
,
extname
:
'.sh'
,
default
:
'curl'
, },
clientsById
: { curl, httpie, wget, }, };