* Namespaced Node.JS Apis

This commit is contained in:
Michaël Van Canneyt 2023-11-28 01:06:14 +01:00
parent 1afdbeda6a
commit 86e45dfb86
12 changed files with 54 additions and 2 deletions

View File

@ -0,0 +1,3 @@
{$DEFINE FPC_DOTTEDUNITS}
unit NodeApi.FS;
{$include ../src/node.fs.pas}

View File

@ -0,0 +1,3 @@
{$DEFINE FPC_DOTTEDUNITS}
unit NodeApi.Http;
{$include ../src/node.http.pas}

View File

@ -0,0 +1,3 @@
{$DEFINE FPC_DOTTEDUNITS}
unit NodeApi.Net;
{$include ../src/node.net.pas}

View File

@ -0,0 +1,3 @@
{$DEFINE FPC_DOTTEDUNITS}
unit NodeApi.OnOff;
{$include ../src/node.onoff.pas}

View File

@ -0,0 +1,3 @@
{$DEFINE FPC_DOTTEDUNITS}
unit NodeApi.SPIDevice;
{$include ../src/node.spidevice.pas}

View File

@ -0,0 +1,3 @@
{$DEFINE FPC_DOTTEDUNITS}
unit NodeApi.Url;
{$include ../src/node.url.pas}

View File

@ -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 = '/';

View File

@ -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 }

View File

@ -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);

View File

@ -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);

View File

@ -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

View File

@ -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)