YepCode JavaScript Code Rules
This file provides guidelines for LLMs to write JavaScript code compatible with YepCode platform and ready to use its specific helpers.
JavaScript Code Rules
Section titled “JavaScript Code Rules”Quick Reference
Section titled “Quick Reference”| Aspect | Guideline |
|---|---|
| Runtime | Node.js v22 |
| Main file (process) | index.js |
| Entry point | async function main() |
| Export (required) | module.exports = { main } |
| Parameters | yepcode.context.parameters |
| Variables | process.env.X or yepcode.env.X |
| Modules | yepcode.import("module-slug") |
Critical Rules
Section titled “Critical Rules”- ✅ Always export
mainwithmodule.exports = { main } - ❌ Never call
main()directly - ✅ Always use
async/awaitfor async operations - ✅ Always add
try/catcharound the main flow for actionable errors
Process Template
Section titled “Process Template”async function main() { // Access input parameters const { parameters } = yepcode.context;
// Your code here
// Return result return { message: "Success!" };}
module.exports = { main };Helpers Usage
Section titled “Helpers Usage”- Access execution info:
const { id, comment } = yepcode.execution; - Access process info:
const { id: processId, name: processName } = yepcode.execution.process; - Access schedule info (if present):
const { id: scheduleId, comment: scheduleComment } = yepcode.execution.schedule; - Access team timezone:
const timezone = yepcode.execution.timezone; - Use environment variables:
const apiKey = process.env.API_KEY; // or yepcode.env.API_KEY - Import YepCode modules:
const { myFunc } = yepcode.import("module-name");- Caution: module names must be hardcoded strings (no variables)
- Import with version:
const { myFunc } = yepcode.import("module-name", "v1.0"); - Run another process:
await yepcode.processes.run("process-identifier", options);
Logging
Section titled “Logging”console.log("INFO message");console.debug("DEBUG message");console.info("INFO message");console.warn("WARNING message");console.error("ERROR message");Dependencies Management
Section titled “Dependencies Management”- You may use external npm packages
- Just add the require statement to the code and the package will be installed automatically
- If package import name is different than the package name, you must use the
@add-packagecomment:
// @add-package axiosconst axios = require("axios");Local Disk
Section titled “Local Disk”const path = require("path");
// Calculate the path to the temporary fileconst filePath = path.join(process.env.TMP_DATA_DIR, "myfile.txt");
// Writing a fileconst fs = require("fs");fs.writeFileSync(filePath, "Hello from YepCode!");Datastore
Section titled “Datastore”// Setting a valueawait yepcode.datastore.set("key", "value");// Setting a object valueawait yepcode.datastore.set("key", JSON.stringify({ name: "John", age: 30 }));
// Getting a valueconst value = await yepcode.datastore.get("key");
// Deleting a valueawait yepcode.datastore.del("key");Storage
Section titled “Storage”const fs = require("node:fs");const path = require("node:path");const localPath = path.join(process.env.TMP_DATA_DIR, "localfile.txt");
// Uploading a fileawait yepcode.storage.upload("path/myfile.txt", fs.createReadStream(localPath));
// Listing filesconst files = await yepcode.storage.list();
// Downloading a fileconst stream = await yepcode.storage.download("path/myfile.txt");stream.pipe(fs.createWriteStream(localPath));
// Deleting a fileawait yepcode.storage.delete("path/myfile.txt");Return Values
Section titled “Return Values”Standard Return
Section titled “Standard Return”return { message: "Success!" };Custom HTTP Status Codes
Section titled “Custom HTTP Status Codes”- This is the format for custom HTTP status codes:
return { status: 404, body: { message: "Not found" }, headers: { "Content-Type": "application/json" }};Transient Results
Section titled “Transient Results”return { transient: true, data: sensitiveData,};