mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 19:27:45 +02:00
* Namespaced Node.JS Apis
This commit is contained in:
parent
1afdbeda6a
commit
86e45dfb86
3
packages/nodejs/namespaced/NodeApi.FS.pas
Normal file
3
packages/nodejs/namespaced/NodeApi.FS.pas
Normal file
@ -0,0 +1,3 @@
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
unit NodeApi.FS;
|
||||
{$include ../src/node.fs.pas}
|
3
packages/nodejs/namespaced/NodeApi.Http.pas
Normal file
3
packages/nodejs/namespaced/NodeApi.Http.pas
Normal file
@ -0,0 +1,3 @@
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
unit NodeApi.Http;
|
||||
{$include ../src/node.http.pas}
|
3
packages/nodejs/namespaced/NodeApi.Net.pas
Normal file
3
packages/nodejs/namespaced/NodeApi.Net.pas
Normal file
@ -0,0 +1,3 @@
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
unit NodeApi.Net;
|
||||
{$include ../src/node.net.pas}
|
3
packages/nodejs/namespaced/NodeApi.OnOff.pas
Normal file
3
packages/nodejs/namespaced/NodeApi.OnOff.pas
Normal file
@ -0,0 +1,3 @@
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
unit NodeApi.OnOff;
|
||||
{$include ../src/node.onoff.pas}
|
3
packages/nodejs/namespaced/NodeApi.SPIDevice.pas
Normal file
3
packages/nodejs/namespaced/NodeApi.SPIDevice.pas
Normal file
@ -0,0 +1,3 @@
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
unit NodeApi.SPIDevice;
|
||||
{$include ../src/node.spidevice.pas}
|
3
packages/nodejs/namespaced/NodeApi.Url.pas
Normal file
3
packages/nodejs/namespaced/NodeApi.Url.pas
Normal file
@ -0,0 +1,3 @@
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
unit NodeApi.Url;
|
||||
{$include ../src/node.url.pas}
|
@ -10,7 +10,9 @@
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit node.fs;
|
||||
{$ENDIF}
|
||||
|
||||
{$mode objfpc}
|
||||
{$ModeSwitch externalclass}
|
||||
@ -18,7 +20,11 @@ unit node.fs;
|
||||
interface
|
||||
|
||||
uses
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
JSApi.JS,NodeApi.JS, System.Types, System.SysUtils;
|
||||
{$ELSE}
|
||||
JS, NodeJS, Types, SysUtils;
|
||||
{$ENDIF}
|
||||
|
||||
var
|
||||
DirectorySeparator: char = '/';
|
@ -12,7 +12,9 @@
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit node.http;
|
||||
{$ENDIF}
|
||||
|
||||
{$mode objfpc}
|
||||
{$modeswitch externalclass}
|
||||
@ -20,7 +22,11 @@ unit node.http;
|
||||
interface
|
||||
|
||||
uses
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
System.Types, JSApi.JS,NodeApi.JS, NodeApi.Net;
|
||||
{$ELSE}
|
||||
js, nodejs, types, node.net;
|
||||
{$ENDIF}
|
||||
|
||||
Type
|
||||
{ TNJSHTTPIncomingMessage }
|
@ -12,7 +12,9 @@
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit node.net;
|
||||
{$ENDIF}
|
||||
|
||||
{$mode objfpc}
|
||||
{$modeswitch externalclass}
|
||||
@ -20,7 +22,11 @@ unit node.net;
|
||||
interface
|
||||
|
||||
uses
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
System.Classes, System.SysUtils, JSApi.JS, NodeApi.JS;
|
||||
{$ELSE}
|
||||
Classes, SysUtils, js, nodejs;
|
||||
{$ENDIF}
|
||||
|
||||
type
|
||||
TNJSStreamDuplex = class external name 'stream.Duplex' (TJSObject);
|
@ -12,8 +12,9 @@
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit node.onoff;
|
||||
{$ENDIF}
|
||||
|
||||
{$mode objfpc}
|
||||
{$modeswitch externalclass}
|
||||
@ -21,7 +22,11 @@ unit node.onoff;
|
||||
interface
|
||||
|
||||
uses
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
JSApi.JS, NodeApi.JS;
|
||||
{$ELSE}
|
||||
JS,nodejs;
|
||||
{$ENDIF}
|
||||
|
||||
Type
|
||||
TGPIOReadCallBack = reference to procedure(err : TJSError; aValue : Byte);
|
@ -12,7 +12,9 @@
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit node.spidevice;
|
||||
{$ENDIF}
|
||||
|
||||
{$mode objfpc}
|
||||
{$modeswitch externalclass}
|
||||
@ -20,7 +22,11 @@ unit node.spidevice;
|
||||
interface
|
||||
|
||||
uses
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
JSApi.JS, NodeApi.JS;
|
||||
{$ELSE}
|
||||
JS,NodeJS;
|
||||
{$ENDIF}
|
||||
|
||||
|
||||
Type
|
@ -12,8 +12,9 @@
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit node.url;
|
||||
{$ENDIF}
|
||||
|
||||
{$mode objfpc}
|
||||
{$ModeSwitch externalclass}
|
||||
@ -21,7 +22,11 @@ unit node.url;
|
||||
interface
|
||||
|
||||
uses
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
System.Types, JSApi.JS, NodeApi.JS;
|
||||
{$ELSE}
|
||||
Types, JS, nodeJS;
|
||||
{$ENDIF}
|
||||
|
||||
Type
|
||||
TNJSURLSearchParams = Class external name 'URLSearchParams' (TJSObject)
|
Loading…
Reference in New Issue
Block a user