elbasti
Hi folks,
I’m working on a greenfield webapp. The stack I’d like to try is Vue on top of Phoenix. I’m not new to vue, but I’m new to Phoenix.
I wonder how you all have been addressing the js build chain at development & build time.
I’d love to be able to use the vue cli as much as possible. JS tooling is definitely not my strong suit and so far I’ve found it incredibly useful, with super sane defaults and really cool features (ex, modern mode )
However, one side effect of using vue-cli is that webpack config is kind of abstracted away.
Right now I’m thinking about structuring my project as follows:
- Start a new phoenix project with
--no-webpack; - Start a vue project using
vue-cli-service, with these two changes:
priv/staticshould be the build targetlib/myapp/templates/layout/app.html.eexshould be theindex_pathforvue-cli-service
Would this work? Anyone here using vue & phoenix have a similar setup?
As well, how do you handle developing the vue component of your app (ie, leveraging vue-cli-service serve ) with such a setup?
Many thanks, loving phoenix so far.
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
sribe
Personally, I run them completely separately in development. And have a shell script in the Vue project that builds the release then rsync’s it into a folder in the Phoenix project when I’m ready to push out a release.
nthock
We are using Phoenix as the backend, and Nuxt (a Vue framework) as the frontend. Both frontend and backend are separate application and we deploy them separately.
elbasti
Thanks! I suppose that makes sense. So you have Phonenix serve your static vue app? Just for clarification, does this mean that your phoenix
templates/layout/app.html.eexis actually the vue index page? Where do you have a<div id="app">(or similar), intemplates/layout/app.html.eexor intemplates/pages/index.html.eex?Sorry for the follow up; just trying to figure out how to marry the phoenix pages with the index page created by vue.
elbasti
Thanks. So your vue app is served by a different server? (node.js, presumably)?
peerreynders
No. With that setup Phoenix doesn’t serve any of the Vue app’s asset’s - it strictly functions as an independent JSON server.
I had a Vue example for Phoenix 1.3 using the
app.html.eexbut the consensus seems to be to keep Phoenix/Vue separate so that using Nuxt.js remains an option.For React there is elixir_react_render
but there is nothing like that for Vue yet.
Some “Phoenix as a JSON API server” resources:
Harvested from:
sribe
In dev, I have a dev (Node) server serving the Vue app, which talks to the Phoenix server, websockets in my case, but could just a well be a REST API. In production, the Phoenix server just serves the Vue app as static assets.
I don’t. I create the Phoenix app with --no-html.
mikemccall
I don’t. If I’m using the cli I use it standalone. The vue cli doesn’t do a good job integrating with existing frameworks, I believe this is an oversight and it will be resolved but it doesn’t seem to be a priority. There are some open issues and ongoing discussions around this. I have a hard time accepting the whole “Just output the index.html file where your backend app will server it” There are many cases where people don’t want to replace the entire rendered page with vue. I love vue as a frontend framework because you can use it in many different forms. From adding it from the cdn and sprinkle in some components all the way to full SPA. The vue-cli really pushes towards SPA. Now that phoenix uses webpack adding vue (and using single file components) is as easy as adding the vue loader.
It’s actually fairly straight forward!
cd assets && npm install --save-dev vue-loaderUpdate the
webpack.config.jsIn your
app.jsAny page you want to render vue just add the appropriate tag:
For example
myapp_web/templates/page/index.html.eexAt this point nothing stops you from installing and using the
vue-routerorvuex. Customize and use at will.nthock
No. You do not really need a backend server if you are not using server-side rendering. The nuxt portion can be compiled to a JS file that can then deploy as a static site in Netlify.
amnu3387
In fact, if you just have a bunch of static pages along with a walled section (like user area, that doesn’t need to be SEOed) then nuxt generate and deploying that as a static website is great (you can also use Aws S3 and distribute the frontend through cloudfront for instance). If you have a lot of dynamic generated pages that you need to have SEOed then indeed you need to have a back-end server, or generate the dynamic bits (which can become overly complex easily and require a pipeline for continuous generation & deployment).
DragosMocrii
Sorry for re-spawning this thread, but I’m struggling with something similar. So far, I think I understood the gist of the responses here, but just to re-cap, can someone please validate if the following ideas are correct? I’d like to use VueJs/Apollo client for building the front-end of my app, and Phoenix 1.4/Absinthe for serving GraphQL responses.
With the proposed setup:
Would something like this work for a production ready application? Appreciate any comments or concerns!