mvpofmvps

1.0.0 • Public • Published

this repo contains the building blocks for startup/side projects

whatever app one wants to build, there will be many similar chunks or components, lets not write those ever again!

goal: whatever features you need in your app, can be 'modded' in to the base app. modular apps, arent all apps modular, well yeah, but not always easily, how can it be easier? -> let figure it out.

Many apps have: index.html main entry point in js/ts a server to serve that shit a router for the client side an api

client
	ui components -> prob react, but could be anythingo
		should we use material ui? yep, but not always, remember MODULARITY!
	utility components/ dom calcs/
	state management -> mobx redux none
	async services -> really need to have this in a fucking services so I never have to do this shit again. 
	auth

	STYLES: 
		css is fine, with webpack, react styles, maybe material ui theme? 
		i dont wanna do sass lol

	Assets:  need webpack to server all img types, and whatever else may be in there. 

server
	usually need auth
	i like that really siple api example from the express api in es6 repo, using that resource- something npm module for the CRUD mapping
	but I wont have any flexiblity past route/:id 
	Simple CRUD 
	Complex CRUD

	DataBase
		mongo for now, but def need mysql/postgres

Readme

Keywords

Package Sidebar

Install

npm i mvpofmvps

Weekly Downloads

1

Version

1.0.0

License

ISC

Last publish

Collaborators

  • omarjmh