January 2024
Intermediate to advanced
718 pages
20h 15m
English
URI encapsulates the concept of a Uniform Resource Identifier (URI), a way of specifying some kind of (potentially networked) resource. URIs are a superset of URLs. URLs (such as the addresses of web pages) allow specification of addresses by location, and URIs also allow specification by name. The URI classes are available with require "uri".
The URI class can be used to do the following:
URIs consist of a scheme (such as http, mailto, ftp, and so on), followed by structured data identifying the resource within the scheme.
Parsing is managed with the method URI.parse(string), which ...
Read now
Unlock full access