22387d24cd
This change flips the polarity on parallelism: rather than having a --serialize flag, we will have a --parallel=P flag, and by default we will shut off parallelism. We aren't benefiting from it at the moment (until we implement pulumi/pulumi-fabric#106), and there are more hidden dependencies in places like AWS Lambdas and Permissions than I had realized. We may revisit the default, but this allows us to bite off the messiness of dependsOn only when we benefit from it. And in any case, the --parallel=P capability will be useful. |
||
---|---|---|
.. | ||
asset | ||
bin | ||
cmd | ||
runtime | ||
tests | ||
.gitignore | ||
Makefile | ||
README.md | ||
computed.ts | ||
config.ts | ||
index.ts | ||
package.json | ||
resource.ts | ||
tsconfig.json | ||
tslint.json | ||
yarn.lock |
README.md
Pulumi Fabric Node.js SDK
The Pulumi Fabric Node.js SDK lets you write cloud programs in JavaScript.
Installing
For now, we only support developers building from source. Eventually we will have a nice installer.
Prerequisites
To build and install the SDK, you will first need a few things.
First, install Node.js 6.10.2. We recommend nvm, since it makes it easier
to switch between versions of Node.js. Afterwards, run nvm install 6.10.2
.
Next, we suggest using Yarn for package management. NPM works too, but Yarn is faster and therefore preferred. Please follow the directions on Yarn's website.
Building and Testing
The first time you build, you must make configure
to install and prepare native plugins for V8:
$ make configure
Make sure to run this after installing the right version of Node.js above, otherwise it may bind to the wrong version.
To build the SDK, simply run make
from the root directory (sdk/nodejs/
). This will build the code, run tests, and
then "install" the package (by yarn link
ing the resulting bin/
directory).
We recommend putting bin/
on your $PATH
, since the pulumi-langhost-nodejs
executable will be loaded dynamically
by the lumi
tool whenever it encounters a Node.js program.
The tests will verify that everything works, but feel free to try running lumi plan
and/or lumi deploy
from
the examples/minimal/
directory. Remember to run tsc
first, since lumi
expects JavaScript, not TypeScript.