Giter VIP home page Giter VIP logo

Comments (10)

gergoerdosi avatar gergoerdosi commented on June 1, 2024

It should be registrations, see the example in the usage section:

https://github.com/hapijs/glue/blob/master/API.md#usage

from glue.

devinivy avatar devinivy commented on June 1, 2024

The issue is that glue v3 recently came out, and it's likely that you're reading a tutorial for v2. The format of the glue manifest has changed between those two versions.

from glue.

jhyland87 avatar jhyland87 commented on June 1, 2024

Literally RIGHT when I posted the above, Is came across the same API link you posted above on my own... Thank you.

Is there a good book for V3 you would recommend?

from glue.

vdeturckheim avatar vdeturckheim commented on June 1, 2024

@jhyland87, V3 as been released yesterday, it is pretty unlikely that any book has taken the new format in account yet. However you can just use the v2 for now.

from glue.

jhyland87 avatar jhyland87 commented on June 1, 2024

@vdeturckheim, eh, ill use V3, and ill continue to read the book, ill just make sure to look up the documentation for anything I look at.

Thanks!

from glue.

jhyland87 avatar jhyland87 commented on June 1, 2024

So I got the basics to work, but it doesn't look like the labels in the registration[ # ].plugin.options.select are being applied..

'use strict';

import * as Hapi from 'hapi';
import * as Glue from 'glue';

const manifest = {
    server: {
        //cache: 'redis'
    },
    connections: [
        {
            port: 8000,
            labels: ['api']
        },
        {
            port: 8001,
            labels: ['http']
        }
    ],
    registrations: [
        {
            plugin: {
                register: './routes',
                options: {
                    select: [ 'api' ]
                }
            }
        }
    ]
};

const options = {
    relativeTo: __dirname
};

Glue.compose(manifest, options, (err, server) => {
    if (err) throw err;

    server.start(() => {
        console.log('hapi days!');
    });
});

Then the routes.js is:

// routes.js
'use strict';

exports.register = (server, options, next) => {
    server.route({
        method: 'GET',
        path: '/hello-world',
        handler: (request, reply) => {
            reply( 'test passed' );
        }
    });

    next();
};

exports.register.attributes = {
    pkg: {
        name: "helloWorld",
        version: "0.1.0"
    }
};

However the /hello-world works for both ports, am I doing something wrong? (im sure)

from glue.

gergoerdosi avatar gergoerdosi commented on June 1, 2024

The code in glue doesn't look good to me. Created a PR to fix this.

from glue.

jhyland87 avatar jhyland87 commented on June 1, 2024

Oh ok, I thought I was going crazy.

Thanks!

from glue.

csrl avatar csrl commented on June 1, 2024

You want to pass that as a registration option, not a plugin init option. ie.

    registrations: [
        {
            plugin: {
                register: './routes',
            },
            options: {
                select: [ 'api' ]
            }
        }
    ]

See https://github.com/hapijs/glue/blob/master/API.md

from glue.

lock avatar lock commented on June 1, 2024

This thread has been automatically locked due to inactivity. Please open a new issue for related bugs or questions following the new issue template instructions.

from 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.