1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-23 01:36:39 +02:00
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}`)
})