All Projects → whatwg → Fetch

whatwg / Fetch

Licence: cc-by-4.0
Fetch Standard

Programming Languages

HTML
75241 projects

Projects that are alternatives of or similar to Fetch

webidl
Web IDL Standard
Stars: ✭ 296 (-83.5%)
Mutual labels:  standard, whatwg
Xhr
XMLHttpRequest Standard
Stars: ✭ 262 (-85.4%)
Mutual labels:  standard, whatwg
quirks
Quirks Mode Standard
Stars: ✭ 23 (-98.72%)
Mutual labels:  standard, whatwg
Fetch Ponyfill
WHATWG fetch ponyfill
Stars: ✭ 209 (-88.35%)
Mutual labels:  whatwg, fetch
Frisbee
🐕 Modern fetch-based alternative to axios/superagent/request. Great for React Native.
Stars: ✭ 1,038 (-42.14%)
Mutual labels:  whatwg, fetch
mimesniff
MIME Sniffing Standard
Stars: ✭ 89 (-95.04%)
Mutual labels:  standard, whatwg
storage
Storage Standard
Stars: ✭ 92 (-94.87%)
Mutual labels:  standard, whatwg
Encoding
Encoding Standard
Stars: ✭ 176 (-90.19%)
Mutual labels:  standard, whatwg
Node Fetch
A light-weight module that brings the Fetch API to Node.js
Stars: ✭ 7,176 (+300%)
Mutual labels:  whatwg, fetch
Html
HTML Standard
Stars: ✭ 5,217 (+190.8%)
Mutual labels:  standard, whatwg
Notifications
Notifications API Standard
Stars: ✭ 105 (-94.15%)
Mutual labels:  standard, whatwg
Dom
DOM Standard
Stars: ✭ 1,114 (-37.9%)
Mutual labels:  standard, whatwg
infra
Infra Standard
Stars: ✭ 85 (-95.26%)
Mutual labels:  standard, whatwg
Url
URL Standard
Stars: ✭ 343 (-80.88%)
Mutual labels:  standard, whatwg
Streams
Streams Standard
Stars: ✭ 1,074 (-40.13%)
Mutual labels:  standard, whatwg
Fullscreen
Fullscreen API Standard
Stars: ✭ 78 (-95.65%)
Mutual labels:  standard, whatwg
Nuxt Dev To Clone
Build DEV.TO clone with Nuxt.js and new `fetch` hook
Stars: ✭ 118 (-93.42%)
Mutual labels:  fetch
Hyperapp Fx
Effects for use with Hyperapp
Stars: ✭ 105 (-94.15%)
Mutual labels:  fetch
Security Txt
A proposed standard that allows websites to define security policies.
Stars: ✭ 1,393 (-22.35%)
Mutual labels:  standard
Chainabstractionlayer
Blockchain abstraction layer
Stars: ✭ 131 (-92.7%)
Mutual labels:  standard

This repository hosts the Fetch Standard.

Code of conduct

We are committed to providing a friendly, safe, and welcoming environment for all. Please read and respect the WHATWG Code of Conduct.

Contribution opportunities

Folks notice minor and larger issues with the Fetch Standard all the time and we'd love your help fixing those. Pull requests for typographical and grammar errors are also most welcome.

We'd be happy to mentor you through this process. If you're interested and need help getting started, leave a comment on the issue or ask around on IRC.

Pull requests

In short, change fetch.bs and submit your patch, with a good commit message. Consider reading through the WHATWG FAQ if you are new here.

Please add your name to the Acknowledgments section in your first pull request, even for trivial fixes. The names are sorted lexicographically.

Building "locally"

For quick local iteration, run make. To verify your changes locally, run make deploy. See more in the WHATWG Contributor Guidelines.

Formatting

Use a column width of 100 characters.

Do not use newlines inside "inline" elements, even if that means exceeding the column width requirement.

 <li><p>Execute
 <a href=https://w3c.github.io/webappsec-csp/#set-response-csp-list>set <var>response</var>'s CSP list</a>
 on <var>response</var>. <span data-anolis-ref>CSP</span>

is okay and

<li><p>Execute
<a href=https://w3c.github.io/webappsec-csp/#set-response-csp-list>set <var>response</var>'s CSP
list</a> on <var>response</var>. <span data-anolis-ref>CSP</span>

is not.

Using newlines between "inline" element tag names and their content is also forbidden. (This actually alters the content, by adding spaces.) That is

<a>token</a>

is fine and

<a>token
</a>

is not.

An <li> element always has a <p> element inside it, unless it's a child of <ul class=brief>.

If a "block" element contains a single "block" element, do not put it on a newline.

Do not indent for anything except a new "block" element. For instance

 <li><p>Set <var>response</var>'s <span title=concept-response-url-list>url list</span> to a copy of
 <var>request</var>'s <span title=concept-request-url-list>url list</span>.

is not indented, but

 <li>
  <p>Run these substeps <span data-anolis-spec=html>in parallel</span>:

  <ol>

is.

End tags must be omitted when possible and attribute values must not be quoted (if necessary, use double quotes).

Place one newline between paragraphs (including list elements). Place three newlines before <h2>, and two newlines before other headings. This does not apply when a nested heading follows the parent heading.

<ul>
 <li><p>Do not place a newline above.

 <li><p>Place a newline above.
</ul>

<p>Place a newline above.


<h3>Place two newlines above.</h3>

<h4>Placing one newline is OK here.</h4>


<h4>Place two newlines above.</h4>

Use camel case for variable names and sentence case use spaced names for definitions, algorithms, etc.

<p>A <a for=/>request</a> has an associated
<dfn export for=request id=concept-request-redirect-mode>redirect mode</dfn>,...
<p>Let <var>redirectMode</var> be <var>request</var>'s <a for=request>redirect mode</a>.

Merge policy

If you can commit to this repository, see the maintainer guidelines.

Tests

Tests can be found in the fetch/ directory of web-platform-tests/wpt.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].