kabir shah
kabir shah
I'm curious—what extension do you use?🤔
I'll have to update the NPM version, but for now you can use the latest GitHub version by either downloading the files directly or having this in your `package.json`: ```json...
Huh, it seems to have not downloaded the template correctly. Can you check and see what the contents of `/usr/local/lib/node_modules/moon-cli/template/` are?
Odd, it looks like the template didn't download at all. 1. Have you tried running it again? 2. Make sure you are using the latest version of `moon-cli`.
That's odd. Moon reinstalls the latest `moon-template` whenever you run `moon init`. Have you tried that again? Also, what platform are you on?
@ElliotPsyIT I can reopen it, but I guess you're going to need the correct permissions to run it. The problem with downloading it into the new project, is that a...
@ElliotPsyIT The reason I cannot download the template directly to the new location is that it also uses a templating engine format. Each file is a template that `moon-cli` compiles,...
Moon requires Moon CLI version 1.0.0-beta.2 to be compatible with Moon 1.0.0-beta.2. For v1, the new syntax is: ```sh $ moon ``` For now, I think the fix is just...
@funkybunch Try installing with: ```sh $ npm install [email protected] ```
Just use Monx as you normally would with a component — provide the `store` option. ```js Moon.component("c2", { props: ['route'], data: function () { return { test: "test" } },...