portfolio/scripts/fetch-matomo-js.js

12 lines
231 B
JavaScript

#!/usr/bin/env node
'use strict'
const axios = require('axios')
const url =
'https://raw.githubusercontent.com/matomo-org/matomo/4.x-dev/matomo.js'
axios(url).then((response) => {
process.stdout.write(`${response.data}`)
})