GithubHelp home page GithubHelp logo

Comments (5)

seriousme avatar seriousme commented on September 28, 2024

Hi Filippo,

thanks for asking !

The error seems to indicate that the file: '/D:/pode/ts-employee-backend-write/node_modules/@seriousme/openapi-schema-validator/schemas/v2.0/schema.json' does not exist.
Can you please check the output of the following command:

npm ls @seriousme/openapi-schema-validator

This should return:

[email protected] /home/hansklunder/github/fastify-openapi-glue
└── @seriousme/[email protected] 

If it does not give this answer then you might need to run npm install again.

Kind regards,
Hans

from fastify-openapi-glue.

scare82 avatar scare82 commented on September 28, 2024

Hi Hans and thanks for reply.

npm ls @seriousme/openapi-schema-validator

return

I've try with yarn remove fastify-openapi-glue and yarn add fastify-openapi-glue but the error remains

Fastify-openapi-glue 2.6.7 depends of 1.7.1 openapi-schema-validator, but in 2.6.8 there is 2.0.1.
openapi-schema-validator 2.0.0 migrated to ESM module, my project is still commonjs. May be the problem?

from fastify-openapi-glue.

seriousme avatar seriousme commented on September 28, 2024

Hi Filippo,

CommonJS vs ESM is not the problem as @seriousme/openapi-schema-validator is loaded ;-)
This can be derived from the error, it can't open: "@seriousme/openapi-schema-validator/schemas/v2.0/schema.json" and this is only opened from "@seriousme/openapi-schema-validator".

My suggestion would be to check if /D:/pode/ts-employee-backend-write/node_modules/@seriousme/openapi-schema-validator/schemas/v2.0/schema.json exists.

If it exists then there must be something wrong with the file system access policy.

If it does not exist then something went wrong with the installation. My suggestion would then be to remove the /D:/pode/ts-employee-backend-write/node_modules/ folder and do a fresh yarn install.

Hope this helps !

Kind regards,
Hans

from fastify-openapi-glue.

scare82 avatar scare82 commented on September 28, 2024

Hi Hans and sorry delay for reply.

Finally i found the problem and a possibility solution. The problem is Windows. In Linux works but in Windows your script try to open /D:/pode/ts-employee-backend-write/node_modules/@seriousme/openapi-schema-validator/schemas/v2.0/schema.json.

The problem is localFile function of openapi-schema-validator. A possible correction that works in linux and windows (from https://nodejs.org/api/url.html#urlfileurltopathurl):

import { fileURLToPath } from 'url';


function localFile(fileName) {
    return fileURLToPath('file://' + new URL(fileName, import.meta.url).pathname);
}

Once again, Sorry for my poor english.

Your fastify plugin is very useful

from fastify-openapi-glue.

seriousme avatar seriousme commented on September 28, 2024

Hi Filippo,

thanks for finding both the problem and the solution !
I have released version 2.0.2 of @seriousme/openapi-schema-validator with the fix in it.

I also released fastify-openapi-glue as version 2.6.9 that includes @seriousme/openapi-schema-validator version 2.0.2

Your english is good enough for me ;-)

Thanks again for helping !
Hans

from fastify-openapi-glue.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.