GithubHelp home page GithubHelp logo

Possible bug with paths about nelua-lang HOT 9 CLOSED

edubart avatar edubart commented on August 10, 2024
Possible bug with paths

from nelua-lang.

Comments (9)

stefanos82 avatar stefanos82 commented on August 10, 2024

Seems like it was a bug in my code; actually not a bug, but the old way of doing things.

After I rewrote require 'globals to require ./globals.nelua, now it works.

Can we add a note in the documentation to make it obvious for end-users that this should be the way of requiring modules that are relative to project's path?

from nelua-lang.

edubart avatar edubart commented on August 10, 2024

Seems like it was a bug in my code; actually not a bug, but the old way of doing things.

After I rewrote require 'globals to require ./globals.nelua, now it works.

Can we add a note in the documentation to make it obvious for end-users that this should be the way of requiring modules that are relative to project's path?

This is not the proper way to require modules relative to the same path, because it is platform dependent, while Linux uses / as path separator, windows uses \, you could use require '.global' instead. I don't want to document relative require yet because I don't want to encourage people to use it, as Lua can't do that, and people should really setup their library path instead, so it's a hidden feature.

from nelua-lang.

stefanos82 avatar stefanos82 commented on August 10, 2024

This is not the proper way to require modules relative to the same path, because it is platform dependent, while Linux uses / as path separator, windows uses \, you could use require '.global' instead.

Like Python...interesting.

I don't want to document relative require yet because I don't want to encourage people to use it, as Lua can't do that, and people should really setup their library path instead, so it's a hidden feature.

In Lua, how do you handle paths under Windows?

from nelua-lang.

edubart avatar edubart commented on August 10, 2024

In Lua, how do you handle paths under Windows?

Lua does this way: When you do require 'path.to.file', the string path.to.file gets convert to path/to/file.lua on Linux and path\to\file.lua on Windows.

from nelua-lang.

stefanos82 avatar stefanos82 commented on August 10, 2024

Lua does this way: When you do require 'path.to.file', the string path.to.file gets convert to path/to/file.lua on Linux and path\to\file.lua on Windows.

...and Nelua does not do that already to match Lua's behavior?

from nelua-lang.

edubart avatar edubart commented on August 10, 2024

...and Nelua does not do that already to match Lua's behavior?

It does.

from nelua-lang.

stefanos82 avatar stefanos82 commented on August 10, 2024

So what should be the Lua way to require modules relative to the same path as the one we need to run?

from nelua-lang.

edubart avatar edubart commented on August 10, 2024

So what should be the Lua way to require modules relative to the same path as the one we need to run?

This is not possible in Lua, the only thing you can do in Lua is to add search paths, in Nelua you can also add search paths with --add-path flag or in your config.

from nelua-lang.

stefanos82 avatar stefanos82 commented on August 10, 2024

This is not possible in Lua, the only thing you can do in Lua is to add search paths, in Nelua you can also add search paths with --add-path flag or in your config.

I see...

from nelua-lang.

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.