Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
set -euo pipefail
# install.sh
# Lokalise CLI 安裝腳本
# 支援 macOS 和 Linux(x64 和 ARM64)
INSTALL_DIR="${INSTALL_DIR:-$HOME/.lokalise}"
# 可透過環境變數覆蓋,例如:
@ap311036
ap311036 / Fetch.js
Created May 11, 2018 15:29
Fetch Cancel
const controller = new AbortController();
const signal = controller.signal;
function FetchUrl () {
let urlToFetch = "http://opendata.cwb.gov.tw/opendata/DIV2/O-A0001-001.xml";
fetch(urlToFetch, {
method: 'get',
signal,
})