Cristian Barlutiu
Cristian Barlutiu
Hello, I just uploaded the license file.
Hello @hongrunhui, to run the app you need XCode installed on a mac or Electron on Windows. Open `Source.xcodeproj` using XCode and then press run ar build. It should compile...
Here are the benchmarks: Code used ``` javascript const fastUri = require('fast-uri'); const benchmark = require('benchmark') const url = 'uri://user:[email protected]:123/one/two.three?q1=a1&q2=a2#body'; new benchmark.Suite() .add('fast-uri', function () { fastUri.parse(url) }) .add('url', function...
You're absolutely right @mcollina I am already working on that as well. I'll also post the results soon.
Here is the benchmarks using it in fastify: code used: ``` javascript const benchmark = require('benchmark') const Fastify = require('fastify') const http = require('node:http') const pluginFast = require('./plugin-fast'); const pluginUrl...