@digicms/cms
Version:
An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite
34 lines (28 loc) • 785 B
JavaScript
/* eslint-disable no-unused-vars */
;
/**
* Module dependencies
*/
const fetch = require('node-fetch');
const machineID = require('./machine-id');
/*
* No need to worry about this file, we only retrieve anonymous data here.
* It allows us to know on how many times the package has been installed globally.
*/
try {
if (
process.env.npm_config_global === 'true' ||
JSON.parse(process.env.npm_config_argv).original.includes('global')
) {
// fetch('https://analytics.strapi.io/api/v2/track', {
// method: 'POST',
// body: JSON.stringify({
// event: 'didInstallStrapi',
// deviceId: machineID(),
// }),
// headers: { 'Content-Type': 'application/json' },
// }).catch(() => {});
}
} catch (e) {
// ...
}