All Projects → ream → Deprecated

ream / Deprecated

Licence: mit
🚀 Framework for building universal web app and static website in Vue.js (beta)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Deprecated

web-onefx-boilerplate
Full-stack React Framework for building web and backend
Stars: ✭ 34 (-96.04%)
Mutual labels:  koa, universal, server-rendering
Webpack Isomorphic Dev Middleware
The webpack-dev-middleware, but for isomorphic applications
Stars: ✭ 38 (-95.57%)
Mutual labels:  webpack, express, universal
Express React Boilerplate
🚀🚀🚀 This is a tool that helps programmers create Express & React projects easily base on react-cool-starter.
Stars: ✭ 32 (-96.27%)
Mutual labels:  webpack, express, universal
Node Hot Loader
Hot module replacement (hot reload) for Node.js applications. Develop without server restarting.
Stars: ✭ 111 (-87.06%)
Mutual labels:  webpack, express, server
Isomorphic Redux Cnode
😊👻基于react->express->mongo技术栈的同构SPA
Stars: ✭ 123 (-85.66%)
Mutual labels:  webpack, express, server-rendering
Razzle Material Ui Styled Example
Razzle Material-UI example with Styled Components using Express with compression
Stars: ✭ 117 (-86.36%)
Mutual labels:  webpack, express, universal
Art Template
High performance JavaScript templating engine
Stars: ✭ 9,554 (+1013.52%)
Mutual labels:  webpack, express, koa
Github Ranking
🔍GitHub不同语言热门项目排行,Vue.js做页面展示
Stars: ✭ 160 (-81.35%)
Mutual labels:  webpack, express, koa
Grant
OAuth Proxy
Stars: ✭ 3,509 (+308.97%)
Mutual labels:  express, koa, server
Cabin
🌲 Cabin is the best JavaScript and Node.js logging service and logging npm package
Stars: ✭ 622 (-27.51%)
Mutual labels:  express, koa
Kov Blog
A blog platform built with koa,vue and mongoose. 使用 koa ,vue 和 mongo 搭建的博客页面和支持markdown语法的博客编写平台,自动保存草稿。博客地址:https://chuckliu.me
Stars: ✭ 635 (-25.99%)
Mutual labels:  webpack, koa
Universal
Seed project for Angular Universal apps featuring Server-Side Rendering (SSR), Webpack, CLI scaffolding, dev/prod modes, AoT compilation, HMR, SCSS compilation, lazy loading, config, cache, i18n, SEO, and TSLint/codelyzer
Stars: ✭ 669 (-22.03%)
Mutual labels:  webpack, universal
Universal Starter
Angular 9 Universal repo with many features
Stars: ✭ 518 (-39.63%)
Mutual labels:  webpack, universal
React Router Server
Server Side Rendering library for React Router v4.
Stars: ✭ 443 (-48.37%)
Mutual labels:  webpack, server
Vortigern
A universal boilerplate for building web applications w/ TypeScript, React, Redux, Server Side Rendering and more.
Stars: ✭ 647 (-24.59%)
Mutual labels:  webpack, universal
Create Graphql
Command-line utility to build production-ready servers with GraphQL.
Stars: ✭ 441 (-48.6%)
Mutual labels:  express, koa
Koa2 Api Scaffold
一个基于Koa2的轻量级RESTful API Server脚手架。
Stars: ✭ 694 (-19.11%)
Mutual labels:  express, koa
Generator Ng Fullstack
Client, server or fullstack - it's up to you. ng-fullstack gives you the best of the latest.
Stars: ✭ 701 (-18.3%)
Mutual labels:  webpack, server
Vue2 blog
使用vue2.x + vue-cli +vue-router+ vuex + axios + mysql + express + pm2 + webpack+nginx构建的具有登录,注册,留言,用户发帖,用户评论等功能的SPA Blog。注意,注意,注意,后端API全部自己手写,很适合刚学习vue以及express的小伙伴学习,喜欢请Star鼓励一下我,谢谢!项目预览:
Stars: ✭ 417 (-51.4%)
Mutual labels:  webpack, express
React Ssr Setup
React Starter Project with Webpack 4, Babel 7, TypeScript, CSS Modules, Server Side Rendering, i18n and some more niceties
Stars: ✭ 678 (-20.98%)
Mutual labels:  webpack, express

This project is deprecated in favor of https://vapperjs.org

NPM version NPM downloads CircleCI
donate chat

Install

yarn add ream

Usage

Unlike a regular Vue SPA, you must export a function which returns an object in your app entry in order to make it work with Ream:

// index.js
import Vue from 'vue'
import Router from 'vue-router'

Vue.use(Router)

export default () => ({
  router: new Router({
    mode: 'history',
    routes: [{
      path: '/',
      // Dynamically load your index component
      component: () => import('./index.vue')
    }]
  })
})

And that's it, run ream dev and have fun playing with your app at http://localhost:4000.

Roadmap

  • [ ] Document how to modify internal webpack config.
  • [ ] Add proper tests.

To make things happen faster, you may consider becoming a patron to support the development:

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

ream © egoist, Released under the MIT License.
Authored and maintained by egoist with help from contributors (list).

github.com/egoist · GitHub @egoist · Twitter @_egoistlily

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].