Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
do-functions
Advanced tools
A helper to develop and deploy serverless functions to Digital Ocean.
A wrapper and CLI to help you develop and deploy serverless functions on Digital Ocean.
Bundle your function source code BEFORE deploying to make deploys much faster and less error-prone.
Uses esbuild
to bundle all your source code into a single JavaScript file for each
function, with dependencies inline.
See getting-started#packages-structure
for how to structure your functions., and then run npm exec do-functions
in your project root to build!
Then you can quickly deploy
with doctl serverless deploy
.
Focus writing your actual function logic and leave the boilerplate to this libary.
Simply write functions like this:
import {wrapFunction} from 'do-functions'
async function logic(args) {
return 'Hello from TypeScript'
}
export const main = wrapFunction(logic)
Will return an object like this (when main is called by invocation):
{
"body": "\"Hello from TypeScript\"",
"headers": {
"content-type": "application/json"
},
"statusCode": 200
}
Because the schema specifies that "name" is required, any request that doesn't contain it will be rejected
before the logic function is called, and a status 400 Bad request
will be sent.
// note: import from do-functions/schema to use validation
import {wrapFunctionWithSchema} from 'do-functions/schema'
import type {InputSchema} from 'do-functions/schema'
const inputSchema: InputSchema = {
type: 'object',
properties: {
name: {type: 'string'}
},
required: ['name']
}
async function logic(args: { name: string }) {
console.log('Request with name:', args.name) // log request
return `Hello ${args.name}`
}
export const main = wrapFunctionWithSchema(logic, inputSchema)
If you do not already have a Digital Ocean account, and you would like to use Functions, please consider using my referral link to sign up by clicking the badge below:
How it works: if you use this link, you will get $100 of credit on Digital Ocean to spend in your first 60 days. If you spend more than $25, I will get $25 of credit as well.
Note: this project is not in any way affiliated with/supported by Digital Ocean. I'm just a regular Digital Ocean user who started using Functions and realised there must be a better way, so I created this to help, and made it available to others.
FAQs
A helper to develop and deploy serverless functions to Digital Ocean.
The npm package do-functions receives a total of 7 weekly downloads. As such, do-functions popularity was classified as not popular.
We found that do-functions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.