bun-router 0.7.4-experimental.8 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
package/.eslintrc.json CHANGED
@@ -18,6 +18,7 @@
18
18
  "react"
19
19
  ],
20
20
  "rules": {
21
+ "no-eplicit-any": "off",
21
22
  "indent": [
22
23
  "warn",
23
24
  "tab"
@@ -29,6 +30,7 @@
29
30
  "semi": [
30
31
  "error",
31
32
  "always"
32
- ]
33
+ ],
34
+ "no-control-regex": "off"
33
35
  }
34
36
  }
package/examples/basic.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Router, http } from '..';
2
2
 
3
- const router = Router();
3
+ const router = Router(3000, {enableFileLogging: false});
4
4
 
5
5
  router.add('/', 'GET', () => http.json(200, 'ok'));
6
6
 
@@ -1,7 +1,8 @@
1
- import { Router } from '../../';
1
+ import { Router, http } from '../../';
2
2
 
3
3
  const router = Router();
4
4
 
5
+ router.add('/', 'GET', () => http.ok());
5
6
  router.static('/page', './examples/ssr/pages');
6
7
 
7
8
  router.serve();
@@ -2,6 +2,6 @@ import { Router } from '..';
2
2
 
3
3
  const r = Router(3001);
4
4
 
5
- r.static('/page', './pages');
5
+ r.static('/', './examples/pages');
6
6
 
7
7
  r.serve();
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export function User(username: string) {
4
+ return (
5
+ <h1>{ username }</h1>
6
+ );
7
+ }
@@ -0,0 +1,20 @@
1
+ import { Router, http } from '../../';
2
+ import { User } from './components/user';
3
+
4
+ const router = Router();
5
+
6
+ router.get('/', () => {
7
+ return http.ok();
8
+ });
9
+
10
+
11
+ router.get('/u/:username', async ctx => {
12
+ const username = ctx.params.get('username');
13
+
14
+ if (!username) return http.message(400, 'invalid username');
15
+
16
+ return http.render(User(username));
17
+ });
18
+
19
+ router.serve();
20
+
package/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './lib/router/router';
2
2
  export * from './lib/fs/fsys';
3
3
  export * from './lib/logger/logger';
4
+ export * from './lib/router/router.d';
package/lib/http/http.ts CHANGED
@@ -3,6 +3,9 @@ import { httpStatusCodes } from './status';
3
3
  import { ReactNode } from 'react';
4
4
  import { renderToReadableStream } from 'react-dom/server';
5
5
 
6
+ // http is a collection of functions that return a Response
7
+ // object with the appropriate status code and content type
8
+ // e.g. http.ok() returns a 200 response
6
9
  const http = {
7
10
  ok: async (msg?: string): Promise<Response> => {
8
11
  return Promise.resolve(new Response(msg ?? httpStatusCodes[200], {
@@ -47,7 +50,11 @@ const http = {
47
50
  },
48
51
  render: async (component: ReactNode): Promise<Response> => {
49
52
  const stream = await renderToReadableStream(component);
50
- return new Response(stream, { status: 200, statusText: httpStatusCodes[200]});
53
+ return new Response(stream, {
54
+ status: 200,
55
+ statusText: httpStatusCodes[200],
56
+ headers: {'Content-Type': 'text/html; charset=utf-8'}
57
+ });
51
58
  },
52
59
  noContent: async (): Promise<Response> => Promise.resolve(new Response('no content', {
53
60
  status: 204,
@@ -1,66 +1,66 @@
1
1
  const httpStatusCodes: { [key: number]: string } = {
2
- 100: 'Continue',
3
- 101: 'Switching Protocols',
4
- 102: 'Processing',
5
- 103: 'Early Hints',
6
- 200: 'OK',
7
- 201: 'Created',
8
- 202: 'Accepted',
9
- 203: 'Non-Authoritative Information',
10
- 204: 'No Content',
11
- 205: 'Reset Content',
12
- 206: 'Partial Content',
13
- 207: 'Multi-Status',
14
- 208: 'Already Reported',
15
- 226: 'IM Used',
16
- 300: 'Multiple Choices',
17
- 301: 'Moved Permanently',
18
- 302: 'Found',
19
- 303: 'See Other',
20
- 304: 'Not Modified',
21
- 305: 'Use Proxy',
22
- 307: 'Temporary Redirect',
23
- 308: 'Permanent Redirect',
24
- 400: 'Bad Request',
25
- 401: 'Unauthorized',
26
- 402: 'Payment Required',
27
- 403: 'Forbidden',
28
- 404: 'Not Found',
29
- 405: 'Method Not Allowed',
30
- 406: 'Not Acceptable',
31
- 407: 'Proxy Authentication Required',
32
- 408: 'Request Timeout',
33
- 409: 'Conflict',
34
- 410: 'Gone',
35
- 411: 'Length Required',
36
- 412: 'Precondition Failed',
37
- 413: 'Payload Too Large',
38
- 414: 'URI Too Long',
39
- 415: 'Unsupported Media Type',
40
- 416: 'Range Not Satisfiable',
41
- 417: 'Expectation Failed',
42
- 418: "I'm a Teapot",
43
- 421: 'Misdirected Request',
44
- 422: 'Unprocessable Entity',
45
- 423: 'Locked',
46
- 424: 'Failed Dependency',
47
- 425: 'Too Early',
48
- 426: 'Upgrade Required',
49
- 428: 'Precondition Required',
50
- 429: 'Too Many Requests',
51
- 431: 'Request Header Fields Too Large',
52
- 451: 'Unavailable For Legal Reasons',
53
- 500: 'Internal Server Error',
54
- 501: 'Not Implemented',
55
- 502: 'Bad Gateway',
56
- 503: 'Service Unavailable',
57
- 504: 'Gateway Timeout',
58
- 505: 'HTTP Version Not Supported',
59
- 506: 'Variant Also Negotiates',
60
- 507: 'Insufficient Storage',
61
- 508: 'Loop Detected',
62
- 510: 'Not Extended',
63
- 511: 'Network Authentication Required',
64
- };
2
+ 100: 'Continue',
3
+ 101: 'Switching Protocols',
4
+ 102: 'Processing',
5
+ 103: 'Early Hints',
6
+ 200: 'OK',
7
+ 201: 'Created',
8
+ 202: 'Accepted',
9
+ 203: 'Non-Authoritative Information',
10
+ 204: 'No Content',
11
+ 205: 'Reset Content',
12
+ 206: 'Partial Content',
13
+ 207: 'Multi-Status',
14
+ 208: 'Already Reported',
15
+ 226: 'IM Used',
16
+ 300: 'Multiple Choices',
17
+ 301: 'Moved Permanently',
18
+ 302: 'Found',
19
+ 303: 'See Other',
20
+ 304: 'Not Modified',
21
+ 305: 'Use Proxy',
22
+ 307: 'Temporary Redirect',
23
+ 308: 'Permanent Redirect',
24
+ 400: 'Bad Request',
25
+ 401: 'Unauthorized',
26
+ 402: 'Payment Required',
27
+ 403: 'Forbidden',
28
+ 404: 'Not Found',
29
+ 405: 'Method Not Allowed',
30
+ 406: 'Not Acceptable',
31
+ 407: 'Proxy Authentication Required',
32
+ 408: 'Request Timeout',
33
+ 409: 'Conflict',
34
+ 410: 'Gone',
35
+ 411: 'Length Required',
36
+ 412: 'Precondition Failed',
37
+ 413: 'Payload Too Large',
38
+ 414: 'URI Too Long',
39
+ 415: 'Unsupported Media Type',
40
+ 416: 'Range Not Satisfiable',
41
+ 417: 'Expectation Failed',
42
+ 418: 'I\'m a Teapot',
43
+ 421: 'Misdirected Request',
44
+ 422: 'Unprocessable Entity',
45
+ 423: 'Locked',
46
+ 424: 'Failed Dependency',
47
+ 425: 'Too Early',
48
+ 426: 'Upgrade Required',
49
+ 428: 'Precondition Required',
50
+ 429: 'Too Many Requests',
51
+ 431: 'Request Header Fields Too Large',
52
+ 451: 'Unavailable For Legal Reasons',
53
+ 500: 'Internal Server Error',
54
+ 501: 'Not Implemented',
55
+ 502: 'Bad Gateway',
56
+ 503: 'Service Unavailable',
57
+ 504: 'Gateway Timeout',
58
+ 505: 'HTTP Version Not Supported',
59
+ 506: 'Variant Also Negotiates',
60
+ 507: 'Insufficient Storage',
61
+ 508: 'Loop Detected',
62
+ 510: 'Not Extended',
63
+ 511: 'Network Authentication Required',
64
+ };
65
65
 
66
- export { httpStatusCodes }
66
+ export { httpStatusCodes };
@@ -23,12 +23,12 @@ const Colors: Record<string,string> = {
23
23
  } as const;
24
24
 
25
25
 
26
-
27
- function color(foreground: string, background: string, message: string) {
26
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
27
+ function color(foreground: string, background: string, ...args: any[]) {
28
28
  const _foreground = Colors[foreground];
29
29
  const _background = Colors[background];
30
30
  const reset = Colors.reset;
31
- return `${_foreground}${_background}${message}${reset}`;
31
+ return `${_foreground}${_background}${args.map(String).join('')}${reset}`;
32
32
  }
33
33
 
34
34
 
@@ -1,8 +1,9 @@
1
1
  type BunLogger = {
2
- info: (statusCode: number, routePath: string, method: string, message?: string) => void,
3
- error: (statusCode: number, routePath: string, method: string, error: Error) => void,
4
- warn: (message: string) => void,
5
- message: (message: string) => void,
2
+ info: (statusCode: number, routePath: string, method: string, ...args: any[]) => void, // eslint-disable-line @typescript-eslint/no-explicit-any
3
+
4
+ error: (statusCode: number, routePath: string, method: string, error: Error) => void, // eslint-disable-line @typescript-eslint/no-explicit-any
5
+ warn: (...args: any[]) => void, // eslint-disable-line @typescript-eslint/no-explicit-any
6
+ message: (...args: any[]) => void, // eslint-disable-line @typescript-eslint/no-explicit-any
6
7
  }
7
8
 
8
9
  export { BunLogger };
@@ -1,5 +1,4 @@
1
1
  import { color } from './color';
2
- import { BunLogger } from './logger.d';
3
2
 
4
3
 
5
4
  const TITLE = `
@@ -9,17 +8,34 @@ _ _
9
8
  |___|___|_|_| |_| |___|___|_| |___|_|
10
9
 
11
10
  `;
12
- const VERSION = '0.7.4-experimental.8';
13
- const Logger = (): BunLogger => {
11
+ const VERSION = '0.8.0';
12
+ const Logger = (enableFileLogging: boolean) => {
13
+ const file = Bun.file('bun-router.log');
14
+ const writer = enableFileLogging ? file.writer() : null;
15
+
16
+ function stripAnsi(str: string) {
17
+ const ansiRegex = /\u001B\[(?:[0-9]{1,3}(?:;[0-9]{1,3})*)?[m|K]/g;
18
+ return str.replace(ansiRegex, '');
19
+ }
20
+
21
+ async function write(message: string) {
22
+ await Bun.write(Bun.stdout, message);
23
+ if (writer) {
24
+ writer.write(stripAnsi(message));
25
+ writer.flush();
26
+ }
27
+ }
28
+
14
29
  return {
15
- info: async (statusCode: number, routePath: string, method: string, message?: string) => {
30
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
31
+ info: async (statusCode: number, routePath: string, method: string, ...args: any[]) => {
16
32
  const { stamp } = timestamp((new Date(Date.now())));
17
33
  const source = color('green', 'bgBlack', `[bun-router ${stamp}]`);
18
34
  const rp = color('white', 'bgBlack', routePath);
19
35
 
20
- message = `${source}: ${setColor(statusCode)}: ${rp} ${(method === 'GET') ? ' ->' : ' <-'} ${method} ${ message ?? ''}\n`;
36
+ const message = `${source}: ${setColor(statusCode)}: ${rp} ${(method === 'GET') ? ' ->' : ' <-'} ${method} ${args.map(String).join(' ')}\n'}`;
21
37
 
22
- await Bun.write(Bun.stdout, message);
38
+ await write(message);
23
39
 
24
40
  },
25
41
  error: async (statusCode: number, routePath: string, method: string, error: Error) => {
@@ -29,7 +45,7 @@ const Logger = (): BunLogger => {
29
45
 
30
46
  const message = `${source}: ${setColor(statusCode)}: ${rp} ${(method === 'GET') ? ' -> ' : ' <-'} ${error.message}\n`;
31
47
 
32
- await Bun.write(Bun.stdout, message);
48
+ await write(message);
33
49
  },
34
50
  warn: async (message: string) => {
35
51
  const { stamp } = timestamp((new Date(Date.now())));
@@ -38,7 +54,7 @@ const Logger = (): BunLogger => {
38
54
 
39
55
  message = `${source} : ${messageColor}\n`;
40
56
 
41
- await Bun.write(Bun.stdout, message);
57
+ await write(message);
42
58
  },
43
59
  message: async (message: string) => {
44
60
  const { stamp } = timestamp((new Date(Date.now())));
@@ -47,8 +63,18 @@ const Logger = (): BunLogger => {
47
63
 
48
64
  message = `${source}: ${messageColor}\n`;
49
65
 
50
- await Bun.write(Bun.stdout, message);
66
+ await write(message);
51
67
  },
68
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
69
+ log: async(args: any[]) => {
70
+ const { stamp } = timestamp((new Date(Date.now())));
71
+ const source = color('black', 'bgCyan', `[message ${stamp}]`);
72
+ const messageColor = color('yellow', 'bgBlack', args);
73
+
74
+ const message = `${source}: ${messageColor}\n`;
75
+
76
+ await write(message);
77
+ }
52
78
  };
53
79
  };
54
80
 
@@ -5,7 +5,8 @@ import { Logger } from '../logger/logger';
5
5
  import { http } from './router';
6
6
  import { ReactNode } from 'react';
7
7
 
8
- async function createContext(path: string, route: Route, request: Request): Promise<Context> {
8
+ // createContext creates a context object
9
+ async function createContext(path: string, route: Route, request: Request, enableFileLogging: boolean): Promise<Context> {
9
10
  const query = new URLSearchParams(path);
10
11
  const params = extractParams(path, route);
11
12
  const formData = isMultiPartForm(request.headers) ? await request.formData() : new FormData();
@@ -15,12 +16,15 @@ async function createContext(path: string, route: Route, request: Request): Prom
15
16
  request,
16
17
  query,
17
18
  formData,
18
- logger: Logger(),
19
+ logger: Logger(enableFileLogging),
19
20
  json: (statusCode: number, data: any) => http.json(statusCode, data),
20
21
  render: async (component: ReactNode) => await renderStream(component),
21
22
  });
22
23
  }
23
24
 
25
+ // extractParams extracts the parameters from the path
26
+ // and returns a map of key/value pairs
27
+ // e.g. /users/:id => /users/123 => { id: 123 }
24
28
  function extractParams(pattern: string, route: Route): Map<string, string> {
25
29
  const params: Map<string, string> = new Map();
26
30
  const pathSegments = pattern.split('/');
@@ -39,16 +43,19 @@ function extractParams(pattern: string, route: Route): Map<string, string> {
39
43
  return params;
40
44
  }
41
45
 
46
+ // getContentType returns the content type from the headers
42
47
  function getContentType(headers: Headers): string {
43
48
  const contentType = headers.get('Content-Type');
44
49
  return contentType ?? '';
45
50
  }
46
51
 
52
+ // isMultiPartForm returns true if the content type is multipart/form-data
47
53
  function isMultiPartForm(headers: Headers): boolean {
48
54
  const contentType = getContentType(headers);
49
55
  return contentType.includes('multipart/form-data');
50
56
  }
51
57
 
58
+ // renderStream renders the component to a readable stream
52
59
  async function renderStream(children: ReactNode) {
53
60
  const stream = await renderToReadableStream(children);
54
61
  return new Response(stream, { headers: { 'Content-Type': 'text/html' } });
@@ -18,7 +18,8 @@ const createRoute = (path: string, method: string, handler: HttpHandler): Route
18
18
  const RouteTree = () => {
19
19
  const root = createRoute('', 'GET', () => http.notFound());
20
20
 
21
- const addRoute = (pattern: string, method: string, handler: HttpHandler) => {
21
+ function addRoute (pattern: string, method: string, handler: HttpHandler){
22
+ console.log(pattern);
22
23
  const pathParts = pattern.split('/');
23
24
  let current = root;
24
25
 
@@ -36,7 +37,7 @@ const RouteTree = () => {
36
37
  current.handler = handler;
37
38
  current.isLast = true;
38
39
  current.path = pattern;
39
- };
40
+ }
40
41
 
41
42
  function findRoute(pathname: string): Route | undefined {
42
43
  const pathParts = pathname.split('/');
@@ -54,7 +55,31 @@ const RouteTree = () => {
54
55
  return current;
55
56
  }
56
57
 
57
- return { addRoute, findRoute };
58
+ function size() {
59
+ let count = 0;
60
+ function traverse(route: Route) {
61
+ count++;
62
+ for (const child of route.children.values()) {
63
+ traverse(child);
64
+ }
65
+ }
66
+ traverse(root);
67
+ return count;
68
+ }
69
+
70
+ function list() {
71
+ const routes: Route[] = [];
72
+ function traverse(route: Route) {
73
+ routes.push(route);
74
+ for (const child of route.children.values()) {
75
+ traverse(child);
76
+ }
77
+ }
78
+ traverse(root);
79
+ return routes;
80
+ }
81
+
82
+ return { addRoute, findRoute, size, list };
58
83
 
59
84
  };
60
85
 
@@ -35,7 +35,8 @@ type Context = {
35
35
  type HttpHandler = (ctx: Context) => Response | Promise<Response>
36
36
 
37
37
  type Options = {
38
- db: string,
38
+ db: string;
39
+ enableFileLogging: boolean;
39
40
  }
40
41
 
41
42
  type RouterOptions<Options> = ServeOptions
@@ -1,8 +1,8 @@
1
1
  import path from 'path';
2
2
  import { Database } from 'bun:sqlite';
3
- import { Route, BunRouter, RouterOptions, Options, HttpHandler } from './router.d';
3
+ import { Route, BunRouter, RouterOptions, Options } from './router.d';
4
4
  import { httpStatusCodes } from '../http/status';
5
- import { readDir, exists } from '../fs/fsys';
5
+ import { readDir } from '../fs/fsys';
6
6
  import { Logger, startMessage } from '../logger/logger';
7
7
  import { http } from '../http/http';
8
8
  import { RouteTree } from './routeTree';
@@ -10,16 +10,18 @@ import { createContext } from './context';
10
10
 
11
11
  const Router: BunRouter = (port?: number | string, options?: RouterOptions<Options>) => {
12
12
  const { addRoute, findRoute } = RouteTree();
13
- const logger = Logger();
13
+ const logger = Logger(options?.enableFileLogging ?? false);
14
14
 
15
+ // load a component from the root directory relative to the cwd
15
16
  async function loadComponent(root: string, name: string) {
16
17
  const module = await import(path.join(process.cwd(), root, name));
17
18
  return module.default;
18
19
  }
19
20
 
20
- function normalizePath(pattern: string, pathname: string) {
21
+ // extract the path, extension, and base name from a file path
22
+ function extractPathExtBase(pattern: string, pathname: string) {
21
23
  const extension = path.extname(pathname);
22
- let base = path.basename(pathname);
24
+ let base = encodeURIComponent(path.basename(pathname));
23
25
 
24
26
  if (extension === '.html' || extension === '.tsx') base = base.replace(extension, '');
25
27
 
@@ -27,13 +29,19 @@ const Router: BunRouter = (port?: number | string, options?: RouterOptions<Optio
27
29
 
28
30
  if (base === 'index') patternPath = pattern;
29
31
 
30
- return { patternPath, extension, base }
32
+ return { patternPath, extension, base };
31
33
  }
32
34
 
35
+ // check if a file exists
36
+ async function exists(fp: string) {
37
+ const f = Bun.file(fp);
38
+ return await f.exists();
39
+ }
40
+
33
41
  return {
34
42
  // add a route to the router tree
35
43
  add: (pattern, method, callback) => { addRoute(pattern, method, callback); },
36
- get: (pattern: string, callback: HttpHandler) => { addRoute(pattern, 'GET', callback); },
44
+ get: (pattern, callback) => { addRoute(pattern, 'GET', callback); },
37
45
  post: (pattern, callback) => { addRoute(pattern, 'POST', callback); },
38
46
  put: (pattern, callback) => { addRoute(pattern, 'PUT', callback);},
39
47
  delete: (pattern, callback) => { addRoute(pattern, 'DELETE', callback); },
@@ -43,15 +51,14 @@ const Router: BunRouter = (port?: number | string, options?: RouterOptions<Optio
43
51
  // all other file extensions are served as files
44
52
  // the root directory is traversed recursively
45
53
  static: async (pattern: string, root: string) => {
46
- if (!exists(root)) console.log(`Cannot find directory ${root}`);
54
+ if (!exists(root)) return console.error(`Directory not found: ${root}`);
47
55
  await readDir(root, async (fp) => {
48
- const { patternPath, extension, base } = normalizePath(pattern, fp);
49
-
56
+ const { patternPath, extension, base } = extractPathExtBase(pattern, fp);
50
57
  const route: Route = {
51
58
  children: new Map(),
52
- dynamicPath: '',
59
+ dynamicPath: pattern,
53
60
  isLast: true,
54
- path: patternPath.slice(1), // remove the leading '/'
61
+ path: patternPath.startsWith('//') ? patternPath.slice(1) : patternPath, // remove the leading '/' if it exists
55
62
  method: 'GET',
56
63
  handler: async () => {
57
64
  if (extension === '.tsx') {
@@ -65,11 +72,12 @@ const Router: BunRouter = (port?: number | string, options?: RouterOptions<Optio
65
72
 
66
73
  addRoute(route.path, 'GET', route.handler);
67
74
  });
75
+
68
76
  },
69
- // start the server
77
+ // start listening for requests
70
78
  serve: () => {
71
79
  startMessage(port ?? 3000);
72
- const opts: Options = { db: ':memory:' };
80
+ const opts: Options = { db: ':memory:', enableFileLogging: false };
73
81
 
74
82
  Bun.serve({
75
83
  port: port ?? 3000,
@@ -82,6 +90,7 @@ const Router: BunRouter = (port?: number | string, options?: RouterOptions<Optio
82
90
  if (options) {
83
91
  const o = options as Options;
84
92
  opts.db = o.db;
93
+ opts.enableFileLogging = o.enableFileLogging;
85
94
  }
86
95
 
87
96
  const route = findRoute(pathname);
@@ -93,20 +102,28 @@ const Router: BunRouter = (port?: number | string, options?: RouterOptions<Optio
93
102
  return Promise.resolve(http.methodNotAllowed());
94
103
  }
95
104
 
96
- const context = await createContext(pathname, route, req);
105
+ // create a context for the handler
106
+ const context = await createContext(pathname, route, req, opts.enableFileLogging);
97
107
  context.db = new Database(opts.db);
98
108
 
109
+ // call the handler
99
110
  const response = await route.handler(context);
100
111
 
101
112
  logger.info(response.status, url.pathname, req.method, httpStatusCodes[response.status]);
102
113
  return Promise.resolve(response);
103
114
  }
104
115
 
105
- // if no route is found, return 404
116
+ // if no route is found, return 404
106
117
  const response = await http.notFound();
107
118
 
108
119
  logger.info(response.status, url.pathname, req.method, httpStatusCodes[response.status]);
109
120
  return Promise.resolve(http.notFound());
121
+ },
122
+ // if an error occurs, return a 500 response
123
+ error(error) {
124
+ return new Response(`<pre>${error}\n${error.stack}</pre>`, {
125
+ headers: { 'Content-Type': 'text/html' },
126
+ });
110
127
  }
111
128
  });
112
129
  },
package/package.json CHANGED
@@ -3,21 +3,22 @@
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
5
  "devDependencies": {
6
- "@types/react-dom": "^18.2.7",
6
+ "@types/react": "^18.2.23",
7
+ "@types/react-dom": "^18.2.8",
7
8
  "@typescript-eslint/eslint-plugin": "^6.7.0",
8
9
  "@typescript-eslint/parser": "^6.7.0",
9
10
  "bun-types": "latest",
10
11
  "eslint": "^8.49.0",
11
- "eslint-plugin-react": "^7.33.2",
12
- "react-dom": "^18.2.0"
12
+ "eslint-plugin-react": "^7.33.2"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "typescript": "^5.0.0"
16
16
  },
17
- "version": "0.7.4-experimental.8",
17
+ "version": "0.8.0",
18
18
  "dependencies": {
19
- "@types/react": "^18.2.22",
20
19
  "eslint-plugin-react-hooks": "^4.6.0",
21
- "react": "^18.2.0"
22
- }
23
- }
20
+ "react": "^18.2.0",
21
+ "react-dom": "^18.2.0"
22
+ },
23
+ "types": "./lib/router.d.ts"
24
+ }
@@ -1,35 +1,36 @@
1
1
  import { describe, test, expect } from 'bun:test';
2
2
 
3
3
  describe('Router', () => {
4
- test('Serve', async () => {
5
- const proc = Bun.spawn(['./tests/serve.test.sh'], {
6
- onExit: (_proc, _exitCode, _signalCode , error) => {
7
- if (error) console.error(error);
8
- },
9
- });
4
+ test('Serve', async () => {
5
+ const proc = Bun.spawn(['./tests/serve.test.sh'], {
6
+ onExit: (_proc, _exitCode, _signalCode , error) => {
7
+ if (error) console.error(error);
8
+ },
9
+ });
10
10
 
11
- const text = await new Response(proc.stdout).text();
11
+ const text = await new Response(proc.stdout).text();
12
12
 
13
- const hasFailed = text.includes('Failed');
13
+ const hasFailed = text.includes('Failed');
14
14
 
15
- if (hasFailed) console.log(text);
15
+ if (hasFailed) console.log(text);
16
16
 
17
- expect(hasFailed).toBe(false);
17
+ expect(hasFailed).toBe(false);
18
18
 
19
- proc.kill(0);
20
- })
19
+ proc.kill(0);
20
+ });
21
21
 
22
- test('Static', async() => {
23
- const proc = Bun.spawn(['./tests/static.test.sh']);
22
+ test('Static', async() => {
23
+ const proc = Bun.spawn(['./tests/static.test.sh']);
24
24
 
25
- const text = await new Response(proc.stdout).text();
25
+ const text = await new Response(proc.stdout).text();
26
26
 
27
- const hasFailed = text.includes('Failed');
28
- if (hasFailed) console.log(text);
27
+ const hasFailed = text.includes('Failed');
28
+ if (hasFailed) console.log(text);
29
29
 
30
- expect(hasFailed).toBe(false);
30
+ expect(hasFailed).toBe(false);
31
31
 
32
- proc.kill(0);
33
- });
32
+ proc.kill(0);
33
+ });
34
34
  });
35
35
 
36
+
package/tsconfig.json CHANGED
@@ -15,10 +15,12 @@
15
15
  "forceConsistentCasingInFileNames": true,
16
16
  "allowJs": true,
17
17
  "noEmit": true,
18
+ "noImplicitAny": false,
18
19
  "types": [
19
20
  "bun-types" // add Bun global
20
21
  ],
21
22
  "paths": {
23
+ "/examples/*": ["./examples/*"]
22
24
  }
23
25
  },
24
26
  }