Wolfram Language Fast Introduction for Math Students
Get Started »

Cloud Deployment

CloudDeploy deploys objects into the Wolfram Cloud.

Create a webpage that has a picture of a sine wave plot:

In[1]:=
Click for copyable input
CloudDeploy[Plot[Sin[x], {x, 0, 50}]]
Out[1]=

Deploy a dynamic interface:

In[1]:=
Click for copyable input
CloudDeploy[Manipulate[Plot[Sin[f x], {x, 0, 2 Pi}], {f, 1, 10}]]
Out[1]=

Deploy anything from a notebookdynamic or notpreserving its styling.

Use CloudDeploy[Delayed[...]] to deploy an expression that will be recomputed every time it is requested.