From 0498e27f01ffb9310284ddac1fb5f9758b2aff50 Mon Sep 17 00:00:00 2001 From: onyx Date: Sun, 27 Oct 2024 06:37:24 +0530 Subject: [PATCH] Added a button to copy the commands --- posts/en/intro.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/posts/en/intro.md b/posts/en/intro.md index 5f5f2ce..fdadef7 100644 --- a/posts/en/intro.md +++ b/posts/en/intro.md @@ -36,34 +36,48 @@ Using npm: ```bash $ npm install axios ``` + Using bower: ```bash $ bower install axios ``` - + Using yarn: ```bash $ yarn add axios ``` - + Using jsDelivr CDN: ```html ``` + Using unpkg CDN: ```html ``` - + Prebuilt CommonJS modules for direct importing with require (if your module bundler failed to resolve them automatically) ```js const axios = require('axios/dist/browser/axios.cjs'); // browser const axios = require('axios/dist/node/axios.cjs'); // node ``` + + + \ No newline at end of file