Beispiel #1
0
 public HttpNodeInstance(string projectPath, int port = 0, string[] watchFileExtensions = null)
     : base(EmbeddedResourceReader.Read(typeof(HttpNodeInstance), "/Content/Node/entrypoint-http.js"), projectPath, MakeCommandLineOptions(port, watchFileExtensions))
 {
 }
Beispiel #2
0
 public InputOutputStreamNodeInstance(string projectPath)
     : base(EmbeddedResourceReader.Read(typeof(InputOutputStreamNodeInstance), "/Content/Node/entrypoint-stream.js"), projectPath)
 {
 }
Beispiel #3
0
 public HttpNodeInstance(string projectPath, int port = 0)
     : base(EmbeddedResourceReader.Read(typeof(HttpNodeInstance), "/Content/Node/entrypoint-http.js"), projectPath, port.ToString())
 {
 }