1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-30 21:51:50 +02:00
portfolio/scripts/fetch-matomo-js.js

12 lines
231 B
JavaScript
Raw Normal View History

2021-03-13 22:50:00 +01:00
#!/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}`)
})