@nl-design-system-community/theme-wizard-server 1.1.1 → 1.2.1

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.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Try the server
4
4
 
5
- Open the [Swagger UI on http://localhost:9491/api/docs](http://localhost:9491/api/docs) to use the server and see all the options in the REST API.
5
+ Open the [Swagger UI on http://localhost:8080/api/docs](http://localhost:8080/api/docs) to use the server and see all the options in the REST API.
6
6
 
7
7
  ## From a website URL to design tokens JSON
8
8
 
@@ -10,10 +10,10 @@ If you want to use the design for an existing website for a new project, you can
10
10
 
11
11
  For example, use the following API to get a Design Tokens JSON with all design token values found in the CSS of a the website.
12
12
 
13
- Example: [http://localhost:9491/api/v1/css-design-tokens?url=https://example.com/](http://localhost:9491/api/v1/css-design-tokens?url=https://example.com/)
13
+ Example: [http://localhost:8080/api/v1/css-design-tokens?url=https://example.com/](http://localhost:8080/api/v1/css-design-tokens?url=https://example.com/)
14
14
 
15
15
  ## Get all CSS from a website URL
16
16
 
17
17
  For example, use the following API to get a Design Tokens JSON with all design token values found in the CSS of a the website.
18
18
 
19
- Example: [http://localhost:9491/api/v1/css?url=https://example.com/](http://localhost:9491/api/v1/css?url=https://example.com/)
19
+ Example: [http://localhost:8080/api/v1/css?url=https://example.com/](http://localhost:8080/api/v1/css?url=https://example.com/)
package/dist/server.js CHANGED
@@ -2,8 +2,23 @@
2
2
  import { serve } from '@hono/node-server';
3
3
  import app from './index.js';
4
4
  const port = process.env['PORT'] ? Number.parseInt(process.env['PORT'], 10) : 8080;
5
- console.log(`Starting Theme Wizard server on http://localhost:${port}/ ...`);
5
+ console.log('Starting Theme Wizard server...');
6
6
  const server = serve({ port, ...app });
7
+ // Unfortunately Safari 26.2 doesn't support IPv6 addresses, such as: http://[::]:8080/
8
+ // https://discussions.apple.com/thread/255221411
9
+ // Firefox 147 and Chrome 143 support the IPv6 URLs.
10
+ const formatAddressInfo = (addressInfo) => addressInfo
11
+ ? typeof addressInfo === 'string'
12
+ ? addressInfo
13
+ : addressInfo.family === 'IPv6'
14
+ ? `http://[${addressInfo.address}]:${addressInfo.port}/`
15
+ : `http://${addressInfo.address}:${addressInfo.port}/`
16
+ : '';
17
+ server.on('listening', () => {
18
+ const address = formatAddressInfo(server.address());
19
+ console.log(`API:\n${address}`);
20
+ console.log(`Documentation:\n${address}api/docs`);
21
+ });
7
22
  // graceful shutdown
8
23
  process.on('SIGINT', () => {
9
24
  console.log('Stopping Theme Wizard server...');
@@ -1 +1 @@
1
- {"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAC1C,OAAO,GAAG,MAAM,YAAY,CAAC;AAE7B,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AAEnF,OAAO,CAAC,GAAG,CAAC,oDAAoD,IAAI,OAAO,CAAC,CAAC;AAE7E,MAAM,MAAM,GAAG,KAAK,CAAC,EAAE,IAAI,EAAE,GAAG,GAAG,EAAE,CAAC,CAAC;AAEvC,oBAAoB;AACpB,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE;IACxB,OAAO,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;IAC/C,MAAM,CAAC,KAAK,EAAE,CAAC;IACf,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC;AAEH,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,GAAG,EAAE;IACzB,OAAO,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;IAC/C,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE;QACnB,IAAI,GAAG,EAAE,CAAC;YACR,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YACnB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;QACD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAC1C,OAAO,GAAG,MAAM,YAAY,CAAC;AAE7B,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AAEnF,OAAO,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;AAE/C,MAAM,MAAM,GAAG,KAAK,CAAC,EAAE,IAAI,EAAE,GAAG,GAAG,EAAE,CAAC,CAAC;AAEvC,uFAAuF;AACvF,iDAAiD;AACjD,oDAAoD;AACpD,MAAM,iBAAiB,GAAG,CAAC,WAAwC,EAAU,EAAE,CAC7E,WAAW;IACT,CAAC,CAAC,OAAO,WAAW,KAAK,QAAQ;QAC/B,CAAC,CAAC,WAAW;QACb,CAAC,CAAC,WAAW,CAAC,MAAM,KAAK,MAAM;YAC7B,CAAC,CAAC,WAAW,WAAW,CAAC,OAAO,KAAK,WAAW,CAAC,IAAI,GAAG;YACxD,CAAC,CAAC,UAAU,WAAW,CAAC,OAAO,IAAI,WAAW,CAAC,IAAI,GAAG;IAC1D,CAAC,CAAC,EAAE,CAAC;AAET,MAAM,CAAC,EAAE,CAAC,WAAW,EAAE,GAAG,EAAE;IAC1B,MAAM,OAAO,GAAG,iBAAiB,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC;IACpD,OAAO,CAAC,GAAG,CAAC,SAAS,OAAO,EAAE,CAAC,CAAC;IAChC,OAAO,CAAC,GAAG,CAAC,mBAAmB,OAAO,UAAU,CAAC,CAAC;AACpD,CAAC,CAAC,CAAC;AAEH,oBAAoB;AACpB,OAAO,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE;IACxB,OAAO,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;IAC/C,MAAM,CAAC,KAAK,EAAE,CAAC;IACf,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC;AAEH,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,GAAG,EAAE;IACzB,OAAO,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;IAC/C,MAAM,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE;QACnB,IAAI,GAAG,EAAE,CAAC;YACR,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YACnB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;QACD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nl-design-system-community/theme-wizard-server",
3
- "version": "1.1.1",
3
+ "version": "1.2.1",
4
4
  "author": "Community for NL Design System",
5
5
  "description": "Web server with REST API for scraping websites to extract design tokens",
6
6
  "license": "EUPL-1.2",
@@ -42,7 +42,7 @@
42
42
  "@vercel/related-projects": "1.0.0",
43
43
  "hono": "4.11.3",
44
44
  "zod": "4.3.4",
45
- "@nl-design-system-community/css-scraper": "1.1.0"
45
+ "@nl-design-system-community/css-scraper": "1.1.1"
46
46
  },
47
47
  "scripts": {
48
48
  "start": "node dist/server.js",