ssb
ssb

Reputation: 7502

Yeoman and ExpressJS

I want to know if there is some boilerplate code to use a frontend workflow tool like Yeoman with a backend framework like ExpressJS, if I want to maintain the same codebase for both the front and back ends.

Basically I want to know -

Upvotes: 25

Views: 9130

Answers (6)

ErichBSchulz
ErichBSchulz

Reputation: 15709

It is worth noting there is an express-generator project:

I am going to give it a go - because I'm folling this tutorial - but other than that I cant comment on its value.

Upvotes: 0

Jerome Anthony
Jerome Anthony

Reputation: 8041

Yoeman fullstack generator now generates both front end and back end. Other interesting frameworks which do the same are Sails JS and StrongLoop

Upvotes: 1

Rob
Rob

Reputation: 4139

There's an experimental branch with yeoman + express.js G+ Yeoman/Express Article

I found yeoman.js to be very cool for rapid prototyping but does require some ramping up to get used to the various tools it's "opinionated" about. I've decided to go over each of the core tools in some vids that are hopefully helpful: yeoman.js related videos

Upvotes: 1

Eric
Eric

Reputation: 2087

I haven't found an easy way of integrating my own Express + H5BP + Angular + Grunt skeletons into Yeoman, and eventually just settled for creating a repo here: https://github.com/ericclemmons/genesis-skeleton

From what I've read, there are projects underway to add express generators, but eventually stacks are going to get complex enough to where you'll have to maintain your own starter app, rather than generating it.

Upvotes: 1

Sindre Sorhus
Sindre Sorhus

Reputation: 63477

Yeoman is currently focused on front-end app development, but we're going to explore back-end integration in the future.

Upvotes: 19

No, actually there isn't any right now.

But you can combine express.js with the component package manager. There is some work left, and you cant use yeoman components in component.

To answer your questions

  • You can look for components in the component repo that you have used in yeoman. Not the same, but might be a solution.
  • Use the module supervisor for this. You can get it via npm

Upvotes: 1

Related Questions