- Awesome Lists
- Codewars
- Free Code Camp
- Learn NodeJS
- Glitch (Easy NodeJS apps)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
import { execSync } from 'child_process'; | |
import postgres from 'postgres'; | |
const NAME = process.env.NAME; | |
const VERSION = process.env.VERSION ?? '14'; | |
const RESET = process.env.RESET === 'true'; | |
const PGHOST = process.env.PGHOST ?? 'localhost'; |
After a user submits a screening, PointCare will send the screening data to your webhook receiver via an HTTP POST request.
-
Use the specification and sample data below to construct your webhook receiver.
-
Once your receiver is live, email PointCare development team the required HTTP parameters:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function(msg: string) { | |
console.log(msg); | |
} |
Setup guide for NodeJS on MacOS.
-
Install NVM - Node Version Manager.
-
Run
nvm install node
to install latest NodeJS version.
Notes, code snippets for Bash.
Notes, code snippets, how to for Git CLI.
NewerOlder