本文整理汇总了TypeScript中@feathersjs/express.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: before
before(() => {
const restApp = express.default(feathers())
.use(express.json())
.configure(express.rest())
.use(express.parseAuthentication('jwt'));
app = getApp(restApp as unknown as FeathersApplication) as express.Application;
app.use(express.errorHandler());
server = app.listen(9776);
});
示例2: createApp
export default async function createApp() {
log('Creating Feathers App');
await mongoose.connect(mongoUrl, { useNewUrlParser: true });
await setupSteam();
const app = express(feathers<ServerApp>());
app
.use(express.json())
.use(express.urlencoded({ extended: true }))
.use(cookie())
.hooks(hooks)
.configure(express.rest())
.configure(socketio({ path: '/ws/' }, (io) => {
io.on('connection', (socket: ServerSocket) => {
app.emit('socket-connection', socket);
});
}))
.configure(configureDebug)
.configure(services)
.configure(configureChannels);
app
.use(express.notFound({ verbose: true }))
.use(express.errorHandler({
html(error, _, res) {
res.send(render(error));
},
logger: false,
}));
log('Created Feathers App');
return app;
}
示例3: getProfile
// @ts-ignore
import memory from 'feathers-memory';
export class TestOAuthStrategy extends OAuthStrategy {
async getProfile (data: AuthenticationRequest, _params: Params) {
if (!data.id) {
throw new Error('Data needs an id');
}
return data;
}
}
const port = 3000;
const app = express(feathers());
const auth = new AuthenticationService(app);
auth.register('jwt', new JWTStrategy());
auth.register('test', new TestOAuthStrategy());
app.configure(rest());
app.set('host', '127.0.0.1');
app.set('port', port);
app.set('authentication', {
secret: 'supersecret',
entity: 'user',
service: 'users',
authStrategies: [ 'jwt' ],
oauth: {
defaults: {
示例4: feathersExpress
import feathers, { Application } from '@feathersjs/feathers';
import feathersExpress from '@feathersjs/express';
import { Application as ExpressApplication } from 'express';
const app: ExpressApplication & Application<{}> = feathersExpress(feathers());
示例5: feathersExpress
import feathers, { Application } from '@feathersjs/feathers';
import feathersExpress, * as express from '@feathersjs/express';
const app = feathersExpress(feathers());
const feathersServiceDummy = {
get : () => {
return Promise.resolve({});
},
find : () => {
return Promise.resolve([{}, {}]);
}
};
const expressMiddlewareDummy = (req: express.Request, res: express.Response, next: express.NextFunction) => {
next();
return app;
};
app.use(express.json());
app.use(express.urlencoded({extended : true}));
app.use('/', express.static('./public'));
app.use('/', expressMiddlewareDummy, feathersServiceDummy);
app.configure(express.rest());
app.use(express.notFound());
app.use(express.errorHandler({logger : console}));