# Display Node.js and Twilio SDK versions

Sometimes, such as when you are [migrating to the latest version of Node.js](/docs/serverless/functions-assets/node-upgrade), you want to verify what version of Node.js your Functions are running on. The same can apply to the version of the [Twilio Node.js SDK](https://github.com/twilio/twilio-node) that you are using, since its version determines what functionality is available via the [context.getTwilioClient](/docs/serverless/functions-assets/functions/invocation#helper-methods) helper.

The following code sample shows some helpful values that you can return or log for verification. To get started, follow the instructions below to create a Service and Function to host and execute the example.

## Create and host a Function

In order to run any of the following examples, you will first need to create a Function into which you can paste the example code. You can create a Function using the Twilio Console or the [Serverless Toolkit](/docs/labs/serverless-toolkit) as explained below:

## Console

If you prefer a UI-driven approach, creating and deploying a Function can be done entirely using the Twilio Console and the following steps:

1. Log in to the Twilio Console and navigate to the [Functions tab](https://www.twilio.com/console/functions/overview). If you need an account, you can sign up for a free Twilio account [here](https://www.twilio.com/try-twilio)!
2. Functions are contained within **Services**. Create a **[Service](/docs/serverless/functions-assets/functions/create-service)** by clicking the **[Create Service](https://www.twilio.com/console/functions/overview/services)** button and providing a name such as *test-function*.
3. Once you've been redirected to the new Service, click the **Add +** button and select **Add Function** from the dropdown.
4. This will create a new [Protected](/docs/serverless/functions-assets/visibility) Function for you with the option to rename it. The name of the file will be path it is accessed from.
5. Copy any one of the example code snippets from this page that you want to experiment with, and paste the code into your newly created Function. You can quickly switch examples by using the dropdown menu of the code rail.
6. Click **Save** to save your Function's contents.
7. Click **Deploy All** to build and deploy the Function. After a short delay, your Function will be accessible from: `https://<service-name>-<random-characters>-<optional-domain-suffix>.twil.io/<function-path>`\
   For example: `test-function-3548.twil.io/hello-world`.

## Serverless Toolkit

The [Serverless Toolkit](/docs/labs/serverless-toolkit) enables you with local development, project deployment, and other functionality via the [Twilio CLI](/docs/twilio-cli/quickstart). To get up and running with these examples using Serverless Toolkit, follow this process:

1. From the CLI, run `twilio serverless:init <your-service-name> --empty` to bootstrap your local environment.
2. Navigate into your new project directory using `cd <your-service-name>`
3. In the `/functions` directory, create a new JavaScript file that is named respective to the purpose of the Function. For example, `sms-reply.protected.js` for a [Protected](/docs/serverless/functions-assets/visibility) Function intended to handle incoming SMS.
4. Populate the file using the code example of your choice and save. **Note** A Function can only export a single handler. You will want to create separate files if you want to run and/or deploy multiple examples at once.

Once your Function(s) code is written and saved, you can test it either by running it locally (and optionally tunneling requests to it via a tool like [ngrok](https://ngrok.com/)), or by deploying the Function and executing against the deployed url(s).

### Run your Function in local development

Run `twilio serverless:start` from your CLI to start the project locally. The Function(s) in your project will be accessible from `http://localhost:3000/sms-reply`

* If you want to test a Function as a [Twilio webhook](/docs/usage/webhooks/getting-started-twilio-webhooks), run: `twilio phone-numbers:update <your Twilio phone number> --sms-url "http://localhost:3000/sms-reply"`\
  This will automatically generate an ngrok tunnel from Twilio to your locally running Function, so you can start sending texts to it. You can apply the same process but with the `voice-url` flag instead if you want to test with [Twilio Voice](/docs/voice).
* If your code does *not* connect to Twilio Voice/Messages as a webhook, you can start your dev server and start an ngrok tunnel in the same command with the `ngrok` flag. For example: `twilio serverless:start --ngrok=""`

### Deploy your Function

To deploy your Function and have access to live url(s), run `twilio serverless:deploy` from your CLI. This will deploy your Function(s) to Twilio under a development environment by default, where they can be accessed from:

`https://<service-name>-<random-characters>-dev.twil.io/<function-path>`

For example: `https://incoming-sms-examples-3421-dev.twil.io/sms-reply`

Your Function is now ready to be invoked by HTTP requests, set as the [webhook](/docs/usage/webhooks/getting-started-twilio-webhooks) of a Twilio phone number, invoked by a Twilio Studio **[Run Function Widget](/docs/studio/widget-library/run-function)**, and more!

## Log and return version data

Copy and paste the following example code into your newly minted Function. Ensure that your Function is [public](/docs/serverless/functions-assets/visibility), save your changes, and deploy the Service that contains this Function.

```js title="Log and return versions"
exports.handler = (context, event, callback) => {
  // PATH represents the relative path of this function
  // This value does not include the domain name
  const path = context.PATH;
  const nodeVersion = process.version;
  const twilioVersion = require('twilio/package.json').version;

  console.log(`Function path: ${path}`);
  console.log(`Node.js version: ${nodeVersion}`);
  console.log(`Twilio SDK version: ${twilioVersion}`);

  return callback(null, {
    status: 'complete',
    path,
    nodeVersion,
    twilioVersion,
  });
};
```

While running live logs (click **Enable live logs** in the Console), make a `GET` request to your Function using a tool such as [curl](https://curl.se/) or [Postman](https://www.postman.com/). You will then see logs displaying the Function's path, as well as the versions of Node.js and the Twilio SDK. Your HTTP client will also receive the same data as JSON.

For example, a public Function named `/versions` would log the following (with different versions, depending on when you're reading this):

```bash
Function path: /versions
Node.js version: v14.18.1
Twilio SDK version: 3.72.0
```

It would also return the following JSON response:

```json
{
  "status": "complete",
  "path": "/versions",
  "nodeVersion": "v14.18.1",
  "twilioVersion": "3.72.0"
}
```

> \[!NOTE]
>
> This sample uses `context.PATH` to log the relative path of this Function. There are several other helpful, [built-in process variables](/docs/serverless/functions-assets/functions/variables#default-environment-variables) that you may wish to log as well.
