Coder Social home page Coder Social logo

wobsoriano / numix Goto Github PK

View Code? Open in Web Editor NEW
209.0 3.0 1.0 1.16 MB

Write your server code inside Vue SFC's and handle forms easily.

Home Page: https://numix.vercel.app

Vue 14.49% TypeScript 81.62% JavaScript 3.89%
nuxt remix vue getserversideprops

numix's Introduction

Numix

Add remix-like loaders and actions to your Nuxt page components.

<script lang="ts">
import { prisma } from '@/lib/prisma.server'

export async function loader() {
  const products = await prisma.product.findMany()
  return products
}
</script>

<script setup lang="ts">
const { data } = await useLoaderData<typeof loader>()
</script>

<template>
  <div>
    <h1>Products</h1>
    <div v-for="product in data" :key="product.id">
      {{ product.name }}
    </div>
  </div>
</template>

Documentation

For documentation about Numix please visit https://numix.vercel.app.

Development

  • Run cp playground/.env.example playground/.env
  • Run pnpm dev:prepare to generate type stubs.
  • Use pnpm dev to start playground in development mode.

License

MIT

numix's People

Contributors

wobsoriano avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

fgyweb

numix's Issues

postinstall command blocks the installation

Hi,
The package postinstall command runs after installation and fails. please consider using prepare instead.

node_modules/.pnpm/[email protected]/node_modules/numix: Running postinstall script, failed in 29ms
.../.pnpm/[email protected]/node_modules/numix postinstall$ cd playground && npx prisma migrate dev --name init && npx prisma db seed
│ sh: line 1: cd: playground: No such file or directory
└─ Failed in 29ms
Progress: resolved 600, reused 578, downloaded 0, added 0, done
 ELIFECYCLE  Command failed with exit code 1.

question about numix and nuxt

Hi wob, sorry for opening an issue here but I thought it would be fast to reach you that way.
I'm a big fan of your libraries in general, and just stumbled upon this one.
I did not know it existed, and end-up doing something very similar with

https://github.com/Hebilicious/form-actions-nuxt

I recently joined the unjs team, and I hope that we'll be able to add this pattern in Nuxt core one day.
Would you like to collaborate together ?

Nuxt fails to load

Just testing out the getting started instructions and I get the following error when running nuxt dev

I get the following warning:

'D:/git/numix-test/.nuxt/numix-handler.mjs' is imported by virtual:#internal/nitro/virtual/server-handlers, but could not be resolved – treating it as an external dependency

I get the following error:

[worker reload] [worker init] Cannot find module 'D:\.nuxt\numix-handler.mjs' imported from D:\git\numix-test\.nuxt\dev\index.mjs  

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.