Wrappid
Module Boilerplate _ _
__ ___ __ __ _ _ __ _ __ (_) __| |
\ \ /\ / / '__/ _` | '_ \| '_ \| |/ _` |
\ V V /| | | (_| | |_) | |_) | | (_| |
\_/\_/ |_| \__,_| .__/| .__/|_|\__,_|
|_| |_|
This is a template documentation, @wrappid/toolkit uses this template to create module boilerplate.
This is a module boilerplate to build wrappid modules which serves specific technical needs or business specific needs.
This getting started section will help you setup a basic module built using the Wrappid
framework Wrappid Projects. Follow the below steps to get going.
2.1. What are my Pre-requisites?
Run the below command to create Module Wrappid Project
wrappid init module <wrappid>
Output:
Now you have a <wrappid-module>
Module Wrappid Project at the directory the command was executed from.
Note: If you already have a wrappid-module project in your github, you need to clone it in the directory you have your
wrappid-[app|service]
.
wrappid-[app|service]
Note: You cannot setup or start a wrappid-module project like wrappid-app and wrappid-service.
To use Wrappid module projects
include
the module into your wrappid-[app|service]
, from inside of the root of wrappid-[app|service]
. wrappid-[app|service]
project. wrappid-[app|service]
should be setup. Run the below command from the root of the wrappid-[app|service]
project you wish to include your module.
cd wrappid-[app|service]
wrappid include <module-name>
Wrappid modules are hot swappable, you can include
and exclude
a module while wrappid-[app|service]
is running.
wrappid-[app|service]
To exclude a wrappid module
wrappid-[app|service]
,wrappid-[app|service]
project.wrappid-[app|service]
should be setup.Run the below command from the root of the wrappid-[app|service]
project you wish to exclude your module.
wrappid exclude <module-name>
Make sure to not write -module
following your
Wrappid modules are hot swappable, you can include
and exclude
a module while wrappid-[app|service]
is running.
For frontend, we write code in ./app/components
For backend, we write code in ./service/components
We will now see how to write code for frontend in the module you have created.
For example the file you created is: ./app/components/portfolioPage.js
Then put an import of your code's function in components.registry.js
import portfolioPage from "./components/portfolioPage"
//Add component page object
export default function ComponentRegistry
{
PortfolioPage: {comp: portfolioPage}
}
To know more about frontend wrappid app, click here
To see what we wrote in the browser, we will put another entry for our new component
Go to the routes.registry.js,
{
portfolioPageRoute:{
Page: {AppComponent: "PortfolioPage" },
entityRef: 'uniquePortfolioPage',
URL:'portfolio'
}
}
Now change your directory to the root of the project you wish to include this module into
Run
wrappid include <module-name>
And start your project!
wrappid start [web|mobile] --env=stage
You should be able to see render of your code at localhost:3000/portfolio