# How can I run Nuxt (SSR) project in webos TV?

**URL:** https://forum.webosose.org/t/how-can-i-run-nuxt-ssr-project-in-webos-tv/1642
**Category:** App Development
**Created:** [January 2, 2022, 10:00pm UTC](https://forum.webosose.org/t/how-can-i-run-nuxt-ssr-project-in-webos-tv/1642 "2022-01-02T22:00:23Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![emrecandurmus](https://avatars.discourse-cdn.com/v4/letter/e/b487fb/32.png) [@emrecandurmus](https://forum.webosose.org/u/emrecandurmus)
#### Post date: [January 2, 2022, 10:00pm UTC](https://forum.webosose.org/t/how-can-i-run-nuxt-ssr-project-in-webos-tv/1642/1 "2022-01-02T22:00:24Z")

</div>

Hi guys,

This is my first webos development. I haven't come across a similar question before in forum.

I have a web application that I have made with NuxtJS and it is running as ssr (server side rendering). I want to migrate this project to webOS environment. Is this possible?

When I run my project with the "npm run start" command, the application is running at "localhost:3000". Is there a way I can run these "npm" commands or run a nuxt project?

Thank you for your support in advance

---

<div class="post-metadata">

### Author: ![NERGI](https://yyz1.discourse-cdn.com/flex031/user_avatar/forum.webosose.org/nergi/32/364_2.png) [@NERGI](https://forum.webosose.org/u/NERGI)
#### Post date: [January 3, 2022, 2:57am UTC](https://forum.webosose.org/t/how-can-i-run-nuxt-ssr-project-in-webos-tv/1642/2 "2022-01-03T02:57:02Z")

</div>

Hi @emrecandurmus , welcome to the forum!

Unfortunately, this forum only for webOS Open Source Edition.  
For webOS TV, please visit the [TV Forum](https://developer.lge.com/community/forums/RetrieveForumList.dev?prodTypeCode=TV).

But to the best of my knowledge,  
if the nuxt project is installed as a node module based on npm, the project might can be installed (on the host PC) as a directory under the `node_modules` directory.  
Then you can package the directory and install it to the target device using [webOS OSE's CLI](https://www.webosose.org/docs/tools/sdk/cli/cli-user-guide/) (This CLI is only for webOS OSE. In your case, you must use the CLI of TV.)

This method only valids when the node module is based on JavaScript.

Thanks!

---

<div class="post-metadata">

### Author: ![emrecandurmus](https://avatars.discourse-cdn.com/v4/letter/e/b487fb/32.png) [@emrecandurmus](https://forum.webosose.org/u/emrecandurmus)
#### Post date: [January 3, 2022, 8:17am UTC](https://forum.webosose.org/t/how-can-i-run-nuxt-ssr-project-in-webos-tv/1642/3 "2022-01-03T08:17:55Z")

</div>

Thanks for reply @NERGI 🤟🏻
