Skip to content

Instantly share code, notes, and snippets.

@pivstone
Last active July 12, 2018 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pivstone/4c5b2d01996a67f7148045f2eb583afa to your computer and use it in GitHub Desktop.
Save pivstone/4c5b2d01996a67f7148045f2eb583afa to your computer and use it in GitHub Desktop.
hello.js
const chain = async(require, app, ...data) => {
const axios = require('axios');
const content = await axios.get('https://www.google.com');
console.log(content.data);
console.log(app.data);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment