mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-15 09:35:17 +01:00
12 lines
231 B
JavaScript
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}`)
|
|
})
|