koffi 2.5.7 → 2.5.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/CHANGELOG.md +17 -100
  2. package/build/{2.5.7/koffi_darwin_arm64 → koffi/darwin_arm64}/koffi.node +0 -0
  3. package/build/{2.5.7/koffi_darwin_x64 → koffi/darwin_x64}/koffi.node +0 -0
  4. package/build/koffi/freebsd_arm64/koffi.node +0 -0
  5. package/build/koffi/freebsd_ia32/koffi.node +0 -0
  6. package/build/{2.5.7/koffi_freebsd_x64 → koffi/freebsd_x64}/koffi.node +0 -0
  7. package/build/koffi/linux_arm32hf/koffi.node +0 -0
  8. package/build/koffi/linux_arm64/koffi.node +0 -0
  9. package/build/koffi/linux_ia32/koffi.node +0 -0
  10. package/build/koffi/linux_riscv64hf64/koffi.node +0 -0
  11. package/build/{2.5.7/koffi_linux_x64 → koffi/linux_x64}/koffi.node +0 -0
  12. package/build/koffi/openbsd_ia32/koffi.node +0 -0
  13. package/build/{2.5.7/koffi_openbsd_x64 → koffi/openbsd_x64}/koffi.node +0 -0
  14. package/build/koffi/win32_arm64/koffi.node +0 -0
  15. package/build/{2.5.7/koffi_win32_ia32 → koffi/win32_ia32}/koffi.node +0 -0
  16. package/build/{2.5.7/koffi_win32_x64 → koffi/win32_x64}/koffi.node +0 -0
  17. package/doc/conf.py +15 -7
  18. package/doc/contribute.md +2 -2
  19. package/doc/index.rst +1 -0
  20. package/doc/packaging.md +60 -0
  21. package/doc/pyproject.toml +1 -1
  22. package/doc/start.md +9 -3
  23. package/doc/static/custom.css +41 -1
  24. package/doc/static/node_c.webp +0 -0
  25. package/doc/static/opensans/LICENSE.txt +202 -0
  26. package/doc/static/opensans/OpenSans.css +39 -0
  27. package/doc/static/opensans/OpenSans_v17_Latin_Bold.woff +0 -0
  28. package/doc/static/opensans/OpenSans_v17_Latin_Bold.woff2 +0 -0
  29. package/doc/static/opensans/OpenSans_v17_Latin_BoldItalic.woff +0 -0
  30. package/doc/static/opensans/OpenSans_v17_Latin_BoldItalic.woff2 +0 -0
  31. package/doc/static/opensans/OpenSans_v17_Latin_Italic.woff +0 -0
  32. package/doc/static/opensans/OpenSans_v17_Latin_Italic.woff2 +0 -0
  33. package/doc/static/opensans/OpenSans_v17_Latin_Regular.woff +0 -0
  34. package/doc/static/opensans/OpenSans_v17_Latin_Regular.woff2 +0 -0
  35. package/doc/templates/logo.html +3 -0
  36. package/package.json +3 -3
  37. package/src/cnoke/assets/FindCNoke.cmake +16 -0
  38. package/src/core/libcc/libcc.cc +67 -13
  39. package/src/core/libcc/libcc.hh +24 -13
  40. package/src/index.d.ts +4 -0
  41. package/src/index.js +51 -10
  42. package/src/koffi/CMakeLists.txt +6 -0
  43. package/src/koffi/examples/electron-builder/README.md +23 -0
  44. package/src/koffi/examples/electron-builder/package.json +21 -0
  45. package/src/koffi/examples/electron-builder/src/app.js +20 -0
  46. package/src/koffi/examples/electron-builder/src/index.html +143 -0
  47. package/src/koffi/examples/electron-builder/src/preload.js +5 -0
  48. package/src/koffi/examples/electron-forge/README.md +25 -0
  49. package/src/koffi/examples/electron-forge/forge.config.js +43 -0
  50. package/src/koffi/examples/electron-forge/package.json +37 -0
  51. package/src/koffi/examples/electron-forge/src/index.css +7 -0
  52. package/src/koffi/examples/electron-forge/src/index.html +143 -0
  53. package/src/koffi/examples/electron-forge/src/main.js +52 -0
  54. package/src/koffi/examples/electron-forge/src/preload.js +5 -0
  55. package/src/koffi/examples/electron-forge/src/renderer.js +31 -0
  56. package/src/koffi/examples/electron-forge/webpack.main.config.js +11 -0
  57. package/src/koffi/examples/electron-forge/webpack.renderer.config.js +13 -0
  58. package/src/koffi/examples/electron-forge/webpack.rules.js +35 -0
  59. package/src/koffi/examples/nwjs/README.md +20 -0
  60. package/src/koffi/examples/nwjs/package.json +11 -0
  61. package/src/koffi/examples/nwjs/src/index.html +145 -0
  62. package/src/koffi/examples/nwjs/src/package.json +9 -0
  63. package/src/koffi/src/ffi.cc +1 -0
  64. package/build/2.5.7/koffi_freebsd_arm64/koffi.node +0 -0
  65. package/build/2.5.7/koffi_freebsd_ia32/koffi.node +0 -0
  66. package/build/2.5.7/koffi_linux_arm32hf/koffi.node +0 -0
  67. package/build/2.5.7/koffi_linux_arm64/koffi.node +0 -0
  68. package/build/2.5.7/koffi_linux_ia32/koffi.node +0 -0
  69. package/build/2.5.7/koffi_linux_riscv64hf64/koffi.node +0 -0
  70. package/build/2.5.7/koffi_openbsd_ia32/koffi.node +0 -0
  71. package/build/2.5.7/koffi_win32_arm64/koffi.node +0 -0
  72. package/doc/favicon.png +0 -0
  73. /package/build/{2.5.7/koffi_win32_arm64 → koffi/win32_arm64}/koffi.exp +0 -0
  74. /package/build/{2.5.7/koffi_win32_arm64 → koffi/win32_arm64}/koffi.lib +0 -0
  75. /package/build/{2.5.7/koffi_win32_ia32 → koffi/win32_ia32}/koffi.exp +0 -0
  76. /package/build/{2.5.7/koffi_win32_ia32 → koffi/win32_ia32}/koffi.lib +0 -0
  77. /package/build/{2.5.7/koffi_win32_x64 → koffi/win32_x64}/koffi.exp +0 -0
  78. /package/build/{2.5.7/koffi_win32_x64 → koffi/win32_x64}/koffi.lib +0 -0
@@ -0,0 +1,23 @@
1
+ This is a simple example shows:
2
+
3
+ - How to communicate with Koffi from a renderer window
4
+ - How to use electron-builder with an application that uses Koffi
5
+
6
+ One of the important piece for the packaging is in `package.json`, specifically this part:
7
+
8
+ ```json
9
+ "build": {
10
+ "extraResources": [
11
+ { "from": "node_modules/koffi/build", "to": "koffi" }
12
+ ]
13
+ }
14
+ ```
15
+
16
+ This instructs electron-builder to copy the native koffi modules to a place where your application will find them.
17
+
18
+ Use the following commands to package the app for your system:
19
+
20
+ ```sh
21
+ npm install
22
+ npm run dist
23
+ ```
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "Koffi Config",
3
+ "version": "1.0.0",
4
+ "description": "Koffi Electron Example",
5
+ "main": "src/app.js",
6
+ "scripts": {
7
+ "start": "electron .",
8
+ "pack": "electron-builder --dir",
9
+ "dist": "electron-builder"
10
+ },
11
+ "author": "Niels Martignène <niels.martignene@protonmail.com>",
12
+ "license": "MIT",
13
+ "devDependencies": {
14
+ "electron": "^25.3.2",
15
+ "electron-builder": "^24.6.3",
16
+ "esbuild": "^0.18.17"
17
+ },
18
+ "dependencies": {
19
+ "koffi": "^2.5.8"
20
+ }
21
+ }
@@ -0,0 +1,20 @@
1
+ const { app, BrowserWindow, ipcMain } = require('electron');
2
+ const koffi = require('koffi');
3
+
4
+ app.whenReady().then(() => {
5
+ ipcMain.handle('koffi:config', (e, ...args) => koffi.config(...args));
6
+
7
+ createWindow();
8
+ });
9
+
10
+ function createWindow() {
11
+ const win = new BrowserWindow({
12
+ width: 800,
13
+ height: 600,
14
+ webPreferences: {
15
+ preload: __dirname + '/preload.js'
16
+ }
17
+ });
18
+
19
+ win.loadFile(__dirname + '/index.html');
20
+ };
@@ -0,0 +1,143 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Koffi Configuration</title>
6
+
7
+ <style>
8
+ html {
9
+ height: 100%;
10
+ }
11
+ body {
12
+ font-family: 'Open Sans', sans-serif;
13
+ display: flex;
14
+ min-height: calc(100% - 17px);
15
+ align-items: center;
16
+ justify-content: center;
17
+ font-size: 14px;
18
+ }
19
+
20
+ #error {
21
+ position: fixed;
22
+ top: 50px;
23
+ left: calc(50% - 200px);
24
+ width: 400px;
25
+ padding: 8px;
26
+ background: #db0a0a;
27
+ color: white;
28
+ box-shadow: 1px 1px rgba(0, 0, 0, 0.5);
29
+ text-align: center;
30
+ }
31
+ #error:empty { display: none; }
32
+
33
+ #config {
34
+ background: #f8f8f8;
35
+ border-radius: 8px;
36
+ padding: 1em;
37
+ font-size: 1.2em;
38
+ }
39
+ form {
40
+ display: flex;
41
+ flex-direction: column;
42
+ gap: 0.5em;
43
+ }
44
+ label {
45
+ display: flex;
46
+ gap: 12px;
47
+ }
48
+ label > span { width: 200px; }
49
+ label > :not(span) { flex: 1; }
50
+ button {
51
+ margin-top: 1em;
52
+ background: white;
53
+ border: white;
54
+ border-radius: 6px;
55
+ padding: 6px;
56
+ cursor: pointer;
57
+ }
58
+ button:hover { background: #ededed; }
59
+ </style>
60
+ </head>
61
+
62
+ <body>
63
+ <div id="error"></div>
64
+ <div id="config"></div>
65
+
66
+ <script>
67
+ update();
68
+
69
+ async function update() {
70
+ let config = await window.koffi.config();
71
+
72
+ let container = document.querySelector('#config');
73
+ let form = document.createElement('form');
74
+
75
+ form.addEventListener('submit', e => { e.preventDefault(); apply(e.target.elements); });
76
+
77
+ for (let key in config) {
78
+ let value = config[key];
79
+
80
+ if (typeof value != 'number')
81
+ continue;
82
+
83
+ let label = document.createElement('label');
84
+ let span = document.createElement('span');
85
+ let input = document.createElement('input');
86
+
87
+ span.textContent = key;
88
+ input.name = key;
89
+ input.type = 'number';
90
+ input.value = config[key];
91
+
92
+ label.appendChild(span);
93
+ label.appendChild(input);
94
+ form.appendChild(label);
95
+ }
96
+
97
+ let button = document.createElement('button');
98
+ button.textContent = 'Modifier';
99
+ button.type = 'submit';
100
+
101
+ form.appendChild(button);
102
+
103
+ window.requestAnimationFrame(() => {
104
+ container.innerHTML = '';
105
+ container.appendChild(form);
106
+ });
107
+ }
108
+
109
+ async function apply(elements) {
110
+ let config = await koffi.config();
111
+
112
+ for (let key in elements) {
113
+ if (!config.hasOwnProperty(key))
114
+ continue;
115
+
116
+ let value = elements[key].valueAsNumber;
117
+
118
+ if (typeof value == 'number')
119
+ config[key] = value;
120
+ }
121
+
122
+ try {
123
+ await koffi.config(config);
124
+ } catch (err) {
125
+ console.error(err);
126
+ flashError(err.message);
127
+ }
128
+
129
+ update();
130
+ }
131
+
132
+ function flashError(msg) {
133
+ let div = document.querySelector('#error');
134
+
135
+ if (flashError.timer != null)
136
+ clearTimeout(flashError.timer);
137
+ flashError.timer = setTimeout(() => { div.textContent = '' }, 4000);
138
+
139
+ div.textContent = msg;
140
+ }
141
+ </script>
142
+ </body>
143
+ </html>
@@ -0,0 +1,5 @@
1
+ const { contextBridge, ipcRenderer } = require('electron');
2
+
3
+ contextBridge.exposeInMainWorld('koffi', {
4
+ config: (...args) => ipcRenderer.invoke('koffi:config', ...args)
5
+ })
@@ -0,0 +1,25 @@
1
+ This is a simple example based on electron-forge coupled with webpack, and using Koffi.
2
+
3
+ The initial structure was generated with the following command:
4
+
5
+ ```sh
6
+ npm init electron-app@latest my-app -- --template=webpack
7
+ ```
8
+
9
+ To run the app, execute the following:
10
+
11
+ ```sh
12
+ cd examples/electron-forge
13
+ npm install
14
+ npm start
15
+ ```
16
+
17
+ You can also use electron-forge to package the app directly:
18
+
19
+ ```sh
20
+ cd examples/electron-forge
21
+ npm install
22
+ npm run make
23
+ ```
24
+
25
+ Things should just work :)
@@ -0,0 +1,43 @@
1
+ module.exports = {
2
+ packagerConfig: {
3
+ asar: true,
4
+ },
5
+ rebuildConfig: {},
6
+ makers: [
7
+ {
8
+ name: '@electron-forge/maker-squirrel',
9
+ config: {},
10
+ },
11
+ {
12
+ name: '@electron-forge/maker-zip',
13
+ config: {},
14
+ }
15
+ ],
16
+ plugins: [
17
+ {
18
+ name: '@electron-forge/plugin-auto-unpack-natives',
19
+ config: {},
20
+ },
21
+ {
22
+ name: '@electron-forge/plugin-webpack',
23
+ config: {
24
+ mainConfig: './webpack.main.config.js',
25
+ renderer: {
26
+ config: './webpack.renderer.config.js',
27
+ entryPoints: [
28
+ {
29
+ html: './src/index.html',
30
+ js: './src/renderer.js',
31
+ name: 'main_window',
32
+ preload: {
33
+ js: './src/preload.js',
34
+ },
35
+ },
36
+ ],
37
+ },
38
+ "port": 3001,
39
+ "loggerPort": 9001
40
+ },
41
+ },
42
+ ],
43
+ };
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "Koffi Config",
3
+ "version": "1.0.0",
4
+ "description": "Koffi Electron Example",
5
+ "main": ".webpack/main",
6
+ "scripts": {
7
+ "start": "electron-forge start",
8
+ "package": "electron-forge package",
9
+ "make": "electron-forge make",
10
+ "publish": "electron-forge publish",
11
+ "lint": "echo \"No linting configured\""
12
+ },
13
+ "keywords": [],
14
+ "author": {
15
+ "name": "Niels Martignène",
16
+ "email": "niels.martignene@protonmail.com"
17
+ },
18
+ "license": "MIT",
19
+ "devDependencies": {
20
+ "@electron-forge/cli": "^6.2.1",
21
+ "@electron-forge/maker-deb": "^6.2.1",
22
+ "@electron-forge/maker-rpm": "^6.2.1",
23
+ "@electron-forge/maker-squirrel": "^6.2.1",
24
+ "@electron-forge/maker-zip": "^6.2.1",
25
+ "@electron-forge/plugin-auto-unpack-natives": "^6.2.1",
26
+ "@electron-forge/plugin-webpack": "^6.2.1",
27
+ "@vercel/webpack-asset-relocator-loader": "^1.7.3",
28
+ "css-loader": "^6.8.1",
29
+ "electron": "25.3.2",
30
+ "node-loader": "^2.0.0",
31
+ "style-loader": "^3.3.3"
32
+ },
33
+ "dependencies": {
34
+ "electron-squirrel-startup": "^1.0.0",
35
+ "koffi": "^2.5.8"
36
+ }
37
+ }
@@ -0,0 +1,7 @@
1
+ body {
2
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
3
+ Arial, sans-serif;
4
+ margin: auto;
5
+ max-width: 38rem;
6
+ padding: 2rem;
7
+ }
@@ -0,0 +1,143 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Koffi Configuration</title>
6
+
7
+ <style>
8
+ html {
9
+ height: 100%;
10
+ }
11
+ body {
12
+ font-family: 'Open Sans', sans-serif;
13
+ display: flex;
14
+ min-height: calc(100% - 17px);
15
+ align-items: center;
16
+ justify-content: center;
17
+ font-size: 14px;
18
+ }
19
+
20
+ #error {
21
+ position: fixed;
22
+ top: 50px;
23
+ left: calc(50% - 200px);
24
+ width: 400px;
25
+ padding: 8px;
26
+ background: #db0a0a;
27
+ color: white;
28
+ box-shadow: 1px 1px rgba(0, 0, 0, 0.5);
29
+ text-align: center;
30
+ }
31
+ #error:empty { display: none; }
32
+
33
+ #config {
34
+ background: #f8f8f8;
35
+ border-radius: 8px;
36
+ padding: 1em;
37
+ font-size: 1.2em;
38
+ }
39
+ form {
40
+ display: flex;
41
+ flex-direction: column;
42
+ gap: 0.5em;
43
+ }
44
+ label {
45
+ display: flex;
46
+ gap: 12px;
47
+ }
48
+ label > span { width: 200px; }
49
+ label > :not(span) { flex: 1; }
50
+ button {
51
+ margin-top: 1em;
52
+ background: white;
53
+ border: white;
54
+ border-radius: 6px;
55
+ padding: 6px;
56
+ cursor: pointer;
57
+ }
58
+ button:hover { background: #ededed; }
59
+ </style>
60
+ </head>
61
+
62
+ <body>
63
+ <div id="error"></div>
64
+ <div id="config"></div>
65
+
66
+ <script>
67
+ update();
68
+
69
+ async function update() {
70
+ let config = await window.koffi.config();
71
+
72
+ let container = document.querySelector('#config');
73
+ let form = document.createElement('form');
74
+
75
+ form.addEventListener('submit', e => { e.preventDefault(); apply(e.target.elements); });
76
+
77
+ for (let key in config) {
78
+ let value = config[key];
79
+
80
+ if (typeof value != 'number')
81
+ continue;
82
+
83
+ let label = document.createElement('label');
84
+ let span = document.createElement('span');
85
+ let input = document.createElement('input');
86
+
87
+ span.textContent = key;
88
+ input.name = key;
89
+ input.type = 'number';
90
+ input.value = config[key];
91
+
92
+ label.appendChild(span);
93
+ label.appendChild(input);
94
+ form.appendChild(label);
95
+ }
96
+
97
+ let button = document.createElement('button');
98
+ button.textContent = 'Modifier';
99
+ button.type = 'submit';
100
+
101
+ form.appendChild(button);
102
+
103
+ window.requestAnimationFrame(() => {
104
+ container.innerHTML = '';
105
+ container.appendChild(form);
106
+ });
107
+ }
108
+
109
+ async function apply(elements) {
110
+ let config = await koffi.config();
111
+
112
+ for (let key in elements) {
113
+ if (!config.hasOwnProperty(key))
114
+ continue;
115
+
116
+ let value = elements[key].valueAsNumber;
117
+
118
+ if (typeof value == 'number')
119
+ config[key] = value;
120
+ }
121
+
122
+ try {
123
+ await koffi.config(config);
124
+ } catch (err) {
125
+ console.error(err);
126
+ flashError(err.message);
127
+ }
128
+
129
+ update();
130
+ }
131
+
132
+ function flashError(msg) {
133
+ let div = document.querySelector('#error');
134
+
135
+ if (flashError.timer != null)
136
+ clearTimeout(flashError.timer);
137
+ flashError.timer = setTimeout(() => { div.textContent = '' }, 4000);
138
+
139
+ div.textContent = msg;
140
+ }
141
+ </script>
142
+ </body>
143
+ </html>
@@ -0,0 +1,52 @@
1
+ const { app, BrowserWindow, ipcMain } = require('electron');
2
+ const path = require('path');
3
+ const koffi = require('koffi');
4
+
5
+ // Handle creating/removing shortcuts on Windows when installing/uninstalling.
6
+ if (require('electron-squirrel-startup')) {
7
+ app.quit();
8
+ }
9
+
10
+ const createWindow = () => {
11
+ // Create the browser window.
12
+ const mainWindow = new BrowserWindow({
13
+ width: 800,
14
+ height: 600,
15
+ webPreferences: {
16
+ preload: MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY,
17
+ },
18
+ });
19
+
20
+ // and load the index.html of the app.
21
+ mainWindow.loadURL(MAIN_WINDOW_WEBPACK_ENTRY);
22
+
23
+ // Open the DevTools.
24
+ mainWindow.webContents.openDevTools();
25
+ };
26
+
27
+ // This method will be called when Electron has finished
28
+ // initialization and is ready to create browser windows.
29
+ // Some APIs can only be used after this event occurs.
30
+ app.on('ready', createWindow);
31
+
32
+ // Quit when all windows are closed, except on macOS. There, it's common
33
+ // for applications and their menu bar to stay active until the user quits
34
+ // explicitly with Cmd + Q.
35
+ app.on('window-all-closed', () => {
36
+ if (process.platform !== 'darwin') {
37
+ app.quit();
38
+ }
39
+ });
40
+
41
+ app.on('activate', () => {
42
+ // On OS X it's common to re-create a window in the app when the
43
+ // dock icon is clicked and there are no other windows open.
44
+ if (BrowserWindow.getAllWindows().length === 0) {
45
+ createWindow();
46
+ }
47
+ });
48
+
49
+ // In this file you can include the rest of your app's specific main process
50
+ // code. You can also put them in separate files and import them here.
51
+
52
+ ipcMain.handle('koffi:config', (e, ...args) => koffi.config(...args));
@@ -0,0 +1,5 @@
1
+ const { contextBridge, ipcRenderer } = require('electron');
2
+
3
+ contextBridge.exposeInMainWorld('koffi', {
4
+ config: (...args) => ipcRenderer.invoke('koffi:config', ...args)
5
+ })
@@ -0,0 +1,31 @@
1
+ /**
2
+ * This file will automatically be loaded by webpack and run in the "renderer" context.
3
+ * To learn more about the differences between the "main" and the "renderer" context in
4
+ * Electron, visit:
5
+ *
6
+ * https://electronjs.org/docs/tutorial/application-architecture#main-and-renderer-processes
7
+ *
8
+ * By default, Node.js integration in this file is disabled. When enabling Node.js integration
9
+ * in a renderer process, please be aware of potential security implications. You can read
10
+ * more about security risks here:
11
+ *
12
+ * https://electronjs.org/docs/tutorial/security
13
+ *
14
+ * To enable Node.js integration in this file, open up `main.js` and enable the `nodeIntegration`
15
+ * flag:
16
+ *
17
+ * ```
18
+ * // Create the browser window.
19
+ * mainWindow = new BrowserWindow({
20
+ * width: 800,
21
+ * height: 600,
22
+ * webPreferences: {
23
+ * nodeIntegration: true
24
+ * }
25
+ * });
26
+ * ```
27
+ */
28
+
29
+ import './index.css';
30
+
31
+ console.log('👋 This message is being logged by "renderer.js", included via webpack');
@@ -0,0 +1,11 @@
1
+ module.exports = {
2
+ /**
3
+ * This is the main entry point for your application, it's the first file
4
+ * that runs in the main process.
5
+ */
6
+ entry: './src/main.js',
7
+ // Put your normal webpack config below here
8
+ module: {
9
+ rules: require('./webpack.rules'),
10
+ },
11
+ };
@@ -0,0 +1,13 @@
1
+ const rules = require('./webpack.rules');
2
+
3
+ rules.push({
4
+ test: /\.css$/,
5
+ use: [{ loader: 'style-loader' }, { loader: 'css-loader' }],
6
+ });
7
+
8
+ module.exports = {
9
+ // Put your normal webpack config below here
10
+ module: {
11
+ rules,
12
+ },
13
+ };
@@ -0,0 +1,35 @@
1
+ module.exports = [
2
+ // Add support for native node modules
3
+ {
4
+ // We're specifying native_modules in the test because the asset relocator loader generates a
5
+ // "fake" .node file which is really a cjs file.
6
+ test: /native_modules[/\\].+\.node$/,
7
+ use: 'node-loader',
8
+ },
9
+ {
10
+ test: /[/\\]node_modules[/\\].+\.(m?js|node)$/,
11
+ parser: { amd: false },
12
+ use: {
13
+ loader: '@vercel/webpack-asset-relocator-loader',
14
+ options: {
15
+ outputAssetBase: 'native_modules',
16
+ },
17
+ },
18
+ },
19
+ // Put your webpack loader rules in this array. This is where you would put
20
+ // your ts-loader configuration for instance:
21
+ /**
22
+ * Typescript Example:
23
+ *
24
+ * {
25
+ * test: /\.tsx?$/,
26
+ * exclude: /(node_modules|.webpack)/,
27
+ * loaders: [{
28
+ * loader: 'ts-loader',
29
+ * options: {
30
+ * transpileOnly: true
31
+ * }
32
+ * }]
33
+ * }
34
+ */
35
+ ];
@@ -0,0 +1,20 @@
1
+ This is a simple example shows:
2
+
3
+ - How to communicate with Koffi from a simple window (NW.js takes care of the annonying parts)
4
+ - How to use [nw-builder](https://nwutils.io/nw-builder/) to package it
5
+
6
+ To run this example, you need to install NW.js (SDK flavor) from https://nwjs.io/
7
+
8
+ ```sh
9
+ cd examples/nwjs/src
10
+ npm install # Install Koffi
11
+ /path/to/nw .
12
+ ```
13
+
14
+ You can also use nw-builder to package the app directly:
15
+
16
+ ```sh
17
+ cd examples/nwjs
18
+ npm install
19
+ npm run pack
20
+ ```
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "Koffi Config",
3
+ "author": "Niels Martignène <niels.martignene@protonmail.com>",
4
+ "license": "MIT",
5
+ "scripts": {
6
+ "pack": "cd src && npm install && cd .. && nwbuild --glob=false src"
7
+ },
8
+ "devDependencies": {
9
+ "nw-builder": "^4.3.3"
10
+ }
11
+ }