Git Product home page Git Product logo

Comments (2)

clemos avatar clemos commented on August 30, 2024

Obviously, you can't "directly" you module.exports and such in Haxe.
But you can totally do:

var UserSchema = new js.npm.mongoose.Schema({
  username: {
    type: "String", // strings are usually safer here
    unique: true,
    required: true
  },
  password: {
    type: "String",
    required: true
  }
});
var userModel = js.npm.Mongoose.mongoose.model('User', userSchema);

This is the "untyped", extern-only way of doing it: you won't have type safety when using this model (documents won't be typed automatically as { username : String, password : String }).

There is an alternative way of declaring schemas, using js.npm.mongoose.macro package.
It is shown in this example : https://github.com/clemos/haxe-js-kit/blob/develop/test/MongooseTest.hx
Basically, you use Haxe typedefs to define your schema; the typedef (ie: StuffData) is transformed into a mongoose schema definition by a macro, and the fields are "copied" to the Model definition (ie: StuffModel) to provide type safety.
Regarding unique and required flags, you can add them as metadata in your typedef:

typedef UserData = {
   @:unique @:required var username : String;
   @:unique @:required var password : String;
};

see https://github.com/clemos/haxe-js-kit/blob/develop/util/Mongoose.hx#L435-L485

Let me know if the example is clear enough for you to adapt it to your needs, and if it's what you would expect.

from haxe-js-kit.

zabojad avatar zabojad commented on August 30, 2024

I missed those metadata. Thank you very much, your answer is very clear, it is what I was expecting...

from haxe-js-kit.

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.