All Projects β†’ fmiras β†’ Next Pkg

fmiras / Next Pkg

Licence: mit
Extended Next.js server with pkg support

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Next Pkg

server-authentication-next.js
No description or website provided.
Stars: ✭ 103 (+87.27%)
Mutual labels:  nextjs, server-side-rendering
Kohei.dev
🌎 A Production-level Single Page App with Server Side Rendering
Stars: ✭ 50 (-9.09%)
Mutual labels:  nextjs, server-side-rendering
Nextjs Jwt Authentication
A proof of concept app for demonstrating authentication of Next.js app with JWT.
Stars: ✭ 191 (+247.27%)
Mutual labels:  nextjs, server-side-rendering
Sambell
wake me when it's quitting time
Stars: ✭ 101 (+83.64%)
Mutual labels:  nextjs, server-side-rendering
React Storefront
Build and deploy e-commerce progressive web apps (PWAs) in record time.
Stars: ✭ 275 (+400%)
Mutual labels:  nextjs, server-side-rendering
web-starter-kit
An opinionated starter kit with styled-system, graphql-hooks, mobx and nextjs (PWA)
Stars: ✭ 17 (-69.09%)
Mutual labels:  nextjs, server-side-rendering
next-utils
πŸ₯© 🍳 A set of Next.js HoC utilities to make your life easier
Stars: ✭ 30 (-45.45%)
Mutual labels:  nextjs, server-side-rendering
Awesome Nextjs
πŸ“” πŸ“š A curated list of awesome resources : books, videos, articles about using Next.js (A minimalistic framework for universal server-rendered React applications)
Stars: ✭ 6,812 (+12285.45%)
Mutual labels:  nextjs, server-side-rendering
Create Next App
Create Next.js apps in one command
Stars: ✭ 2,783 (+4960%)
Mutual labels:  nextjs, server-side-rendering
next-saga-example
Example of using next.js with redux saga
Stars: ✭ 24 (-56.36%)
Mutual labels:  nextjs, server-side-rendering
React Storefront
React Storefront - PWA for eCommerce. 100% offline, platform agnostic, headless, Magento 2 supported. Always Open Source, Apache-2.0 license. Join us as contributor ([emailΒ protected]).
Stars: ✭ 292 (+430.91%)
Mutual labels:  nextjs, server-side-rendering
Next On Netlify
Build and deploy Next.js applications with Server-Side Rendering on Netlify!
Stars: ✭ 719 (+1207.27%)
Mutual labels:  nextjs, server-side-rendering
Nextjs With Lambda
Next.js example with deploying to AWS Lambda
Stars: ✭ 48 (-12.73%)
Mutual labels:  nextjs
Universal React Demo
ES6 demo of a simple but scalable React app with react-router, code splitting, server side rendering, and tree shaking.
Stars: ✭ 50 (-9.09%)
Mutual labels:  server-side-rendering
Getlink Next
Get Link!
Stars: ✭ 48 (-12.73%)
Mutual labels:  nextjs
Nextjs Multiple Domains
Example using SSR to handle multiple domains on the same project.
Stars: ✭ 46 (-16.36%)
Mutual labels:  nextjs
Grommet Nextjs
Build enterprise apps with react and grommet
Stars: ✭ 54 (-1.82%)
Mutual labels:  nextjs
Shc
Shell script compiler
Stars: ✭ 1,050 (+1809.09%)
Mutual labels:  binary
Intercom Clone
Intercom clone built with NextJS and TailwindCSS
Stars: ✭ 48 (-12.73%)
Mutual labels:  nextjs
Nookies
πŸͺ A set of cookie helpers for Next.js
Stars: ✭ 1,035 (+1781.82%)
Mutual labels:  nextjs

img

NPM version Build Status Build status Dependabot Standard - JavaScript Style Guide Join the community on Spectrum

Next-Pkg is a package for compiling your Next.js project with pkg. This is how you can deploy your Next.js apps on enviroments without node installed! (And take advantage of all the other pkg features)

Usage

cd my-next-js-project/
npm install --save next-pkg pkg

and add a script to your package.json like this:

{
  "scripts": {
    "dev": "next",
    "build": "next build",
    "start": "next start",
    "dist":"next-pkg"
  }
}

then just run npm run dist and you will find on dist folder your next.js binary compiled project.

Contributing

  1. Fork this repository to your own GitHub account and then clone it to your local device
  2. Link the package to the global module directory: npm link
  3. Within the module you want to test your local development instance of next-pkg, just link it to the dependencies: npm link next-pkg. Instead of the default one from npm, node will now use your clone of Next-Pkg!

Credits

Thanks to ZEIT Team for giving us this two amazing tools to make our life easier!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].