Can I use node.js application in target server.

Can I use the Node.js application as a target server.

Solved Solved
0 1 351
1 ACCEPTED SOLUTION

Yes, you can. Actually, that's the only way to deploy node app to apigee.

Target configuration looks like this:

<TargetEndpoint name="default">
      <ScriptTarget>
          <ResourceURL>node://server.js</ResourceURL>
      </ScriptTarget>
</TargetEndpoint>

You can read more in docs

View solution in original post

1 REPLY 1

Yes, you can. Actually, that's the only way to deploy node app to apigee.

Target configuration looks like this:

<TargetEndpoint name="default">
      <ScriptTarget>
          <ResourceURL>node://server.js</ResourceURL>
      </ScriptTarget>
</TargetEndpoint>

You can read more in docs