UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

12 lines (8 loc) 218 B
'use strict'; const path = require('path'); const os = require('os'); // get .serverless home path function getServerlessDir() { return path.join(os.homedir(), '.serverless'); } module.exports = getServerlessDir;