summaryrefslogtreecommitdiffstats
path: root/index.html
blob: e48a00fcd6aca979e01a256379c23d67541ea61a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
  <head>
    <script>
      if ((window.location.host == "jqlang.github.io") && (window.location.protocol != "https:"))
        window.location.protocol = "https";
    </script>
    <meta charset="utf-8">
    <title>jq</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <link rel="canonical" href="https://jqlang.github.io/jq/" />
    <link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.5/spacelab/bootstrap.min.css" rel="stylesheet" integrity="sha256-j7Dtnd7ZjexEiPNbscbopFn9+Cs0b3TLipKsWAPHZIM= sha512-RFhfi6P8zWMAJrEGU+CPjuxPh3r/UUBGqQ+/o6WKPIVZmQqeOipGotH2ihRULuQ8wsMBoK15TSZqc/7VYWyuIw==" crossorigin="anonymous">
    <link rel="stylesheet" href="/jq/css/base.css" type="text/css">
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>

  <body id="index">
    <div class="navbar navbar-default navbar-fixed-top" role="navigation">
      <div class="container">
        <div class="navbar-header">
          <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#nav-collapse">
            <span class="sr-only">Toggle navigation</span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
          </button>
          <a class="navbar-brand" href="/jq/">jq</a>
        </div>

        <div class="navbar-collapse collapse" id="nav-collapse">
          <ul class="nav navbar-nav">
            
              <li >
                <a href="/jq/tutorial/">Tutorial</a>
              </li>
            
              <li >
                <a href="/jq/download/">Download</a>
              </li>
            
              <li >
                <a href="/jq/manual/">Manual</a>
              </li>
            
            <li><a href="https://github.com/jqlang/jq/issues">Issues</a></li>
            <li><a href="https://github.com/jqlang/jq">Source</a></li>
            <li><a href="https://jqplay.org">Try online!</a></li>
            <li><a href="https://raw.githubusercontent.com/jqlang/jq/master/NEWS.md">News</a></li>
          </ul>
        </div>
      </div>
    </div>

    <div class="container">
      <div class="row">
        <div class="jumbotron">
          <div class="row">
            <div class="col-sm-6">
              <img src="/jq/jq.png" class="img-responsive" alt="jq logo"
                  width="400" height="220">
            </div>
            <div class="col-sm-6">
              <div id="blurb">
                <p>jq is a lightweight and flexible command-line JSON processor.</p>

                <div class="btn-toolbar" role="toolbar">
                  <div class="btn-group" role="group">
                    <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
                      Download jq 1.6
                      <span class="caret"></span>
                    </a>
                    <ul class="dropdown-menu">
                      <li><a href="https://github.com/jqlang/jq/releases/download/jq-1.6/jq-linux64">Linux (64-bit)</a></li>
                      <li><a href="https://github.com/jqlang/jq/releases/download/jq-1.6/jq-osx-amd64">macOS (64-bit)</a></li>
                      <li><a href="https://github.com/jqlang/jq/releases/download/jq-1.6/jq-win64.exe">Windows (64-bit)</a></li>
                      <li><a href="/jq/download/">Other platforms, older versions, and source</a></li>
                    </ul>
                  </div>

                  <div class="btn-group">
                    <a class="btn btn-primary" href="https://jqplay.org">
                      Try online at jqplay.org!
                    </a>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>

      <div class="row" id="multiblurb">
        <div class="col-sm-4"><p>jq is like <code>sed</code> for JSON data - you can use it to slice and filter
and map and transform structured data with the same ease that <code>sed</code>,
<code>awk</code>, <code>grep</code> and friends let you play with text.</p></div>
        <div class="col-sm-4"><p>jq is written in portable C, and it has zero runtime
dependencies. You can download a single binary, <code>scp</code> it to a far away
machine of the same type, and expect it to work.</p></div>
        <div class="col-sm-4"><p>jq can mangle the data format that you have into the one that you
want with very little effort, and the program to do so is often
shorter and simpler than you'd expect.</p></div>
      </div>

      <div class="row" style="text-align:center; margin-top: 30px">
        <p>Go read the <a href="/jq/tutorial/">tutorial</a> for more, or the <a href="/jq/manual/">manual</a>
for <em>way</em> more.</p>
<p>Ask questions on <a href="https://stackoverflow.com/">stackoverflow</a> using the <a href="https://stackoverflow.com/questions/tagged/jq">jq
tag</a>, or on the
<a href="https://web.libera.chat/#jq">#jq</a> channel on <a href="https://libera.chat/">Libera.Chat</a>.</p>
      </div>

      <div class="row">
        <h2>News</h2>
        <div id="news">
          <ul>
            
              <li>
                <span class="date">1 November 2018</span>
                <p>jq 1.6 released. See installation options on the <a href="/jq/download/">download</a>
page, and the <a href="https://github.com/jqlang/jq/releases/tag/jq-1.6">release notes</a>
for details.</p>
              </li>
            
              <li>
                <span class="date">15 August 2015</span>
                <p>jq 1.5 released, including new datetime, math, and regexp functions,
try/catch syntax, array and object destructuring, a streaming parser,
and a module system. See installation options on the
<a href="/jq/download/">download</a> page, and the
<a href="https://github.com/jqlang/jq/releases/tag/jq-1.5">release notes</a>
for details.</p>
              </li>
            
              <li>
                <span class="date">26 July 2015</span>
                <p>jq 1.5rc2 is available. Get it on the
<a href="https://github.com/jqlang/jq/releases">releases</a> page.</p>
              </li>
            
              <li>
                <span class="date">01 January 2015</span>
                <p>jq 1.5rc1 is available. Get it on the
<a href="https://github.com/jqlang/jq/releases">releases</a> page.</p>
              </li>
            
              <li>
                <span class="date">09 June 2014</span>
                <p>jq 1.4 (finally) released! Get it on the <a href="/jq/download/">download</a> page.</p>
              </li>
            
              <li>
                <span class="date">19 May 2013</span>
                <p>jq 1.3 released.</p>
              </li>
            
          </ul>
        </div>
      </div>
    </div>

    <footer>
      <div class="container">
        <p>This website is made with <a href="http://getbootstrap.com">Bootstrap</a>, themed with <a href="https://bootswatch.com">Bootswatch</a>.</p>
        <p>jq is licensed under the MIT license (code) and the <a href="https://creativecommons.org/licenses/by/3.0/">CC-BY-3.0</a> license (docs).</p>
      </div>
    </footer>

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha256-Sk3nkD6mLTMOF0EOpNtsIry+s1CsaqQC1rVLTAy+0yc= sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
    <script src="https://twitter.github.io/typeahead.js/releases/0.11.1/typeahead.bundle.js"></script>
  </body>
</html>