Skip to content

Instantly share code, notes, and snippets.

View Wist9063's full-sized avatar
:shipit:

josh Wist9063

:shipit:
View GitHub Profile
@Wist9063
Wist9063 / .eslintrc.json
Created June 16, 2018 00:42 — forked from leny/.eslintrc.json
ESLint config file for node.js + ES6 projects.
{
"env": {
"node": true,
"es6": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParameters": true,
@Wist9063
Wist9063 / app.js
Last active December 8, 2017 04:32 — forked from fethib/app.js
const Discord = require('discord.js'); // remember to install discord.js via: npm install discord.js
const bot = new Discord.Client();
const token = "TOKEN" // to get your token go here: https://discordapp.com/developers/applications/me/
// don't share the token with anyone.
// Bot connexion
bot.on("ready", function () {
console.log("The bot is online!");