This is pretty simple, lets dive in!
Find a name that isn't taken and clearly describes what your module is doing
$ npm view your-first-node-module
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@graph": [{ | |
"@type": "Organization", | |
"@id": "https://www.example.com/#organization", | |
"name": "{{ your name }}", | |
"url": "https://www.example.com/", | |
"address": "{{ address }}", | |
"email": "{{ email }}", |
<?php | |
declare(strict_types=1); | |
use League\OAuth2\Client\Provider\GenericProvider; | |
use Microsoft\Graph\Graph; | |
use Microsoft\Graph\Model; | |
const APP_SESS_ID = 'AZPHPSID'; | |
const OAUTH_APP_ID = ''; |
<?php | |
Function previewSql() | |
{ | |
$users = User::where(‘id’, 0); | |
$users->union(User::where(‘id’, 1)); | |
$users->union(User::where(‘id’, 2)); | |
$users->union(User::where(‘id’, 3)); | |
// Preview sql statement using getBindings() and toSql() builder methods |
#!/bin/bash | |
NODE_VERSION=12.13.1 | |
GITHUB_EMAIL= | |
GITHUB_USERNAME= | |
NGROK_AUTH_TOKEN= | |
mkdir -p ~/Install | |
cd ~/Install |