Ctrl + Space

Brings up autocomplete after typing one of the below shortcuts

stan

standardNatsReply(reply, 'status', 'info', {})

hand

async (msg, reply) => {}

util

() => {}

autil

async () => {}

get

const response = await axios.get(`${}`)

post

const response = await axios.post(`${}`, {})

delete

const response = await axios.delete(`${}`)

put

const response = await axios.put(`${}`, {})

param

const { params } = JSON.parse(msg)

status

success

error

try

try {} catch (error) {}