Skip to content

Instantly share code, notes, and snippets.

View sijeesh-02's full-sized avatar
👋
Hello

Sijeesh Joshi sijeesh-02

👋
Hello
View GitHub Profile
@sijeesh-02
sijeesh-02 / app.js
Last active July 7, 2020 06:11
Express file for basic server, created for blog post
const express = require("express");
const app = express();
const path = require("path");
const config = {
port: 3000,
};
/**
* all calls to /assets would be taken from
* a new path which is join of current directory (__dirname)
@sijeesh-02
sijeesh-02 / webpack.config.js
Last active July 7, 2020 06:11
Webpack trial project, basic config.
const path = require("path");
module.exports = {
entry: "./src/ui/index.js",
// externals to expose script included jQuery lib
externals: {
jquery: "jQuery",
},
output: {
path: path.resolve(__dirname, "dist/ui"),
@sijeesh-02
sijeesh-02 / README.md
Created September 7, 2021 01:21
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.0+commit.1d4f565a.js&optimize=false&runs=200&gist=