Security News
Python Overtakes JavaScript as Top Programming Language on GitHub
Python becomes GitHub's top language in 2024, driven by AI and data science projects, while AI-powered security tools are gaining adoption.
piral-containers
Advanced tools
This is a plugin that only has a peer dependency to piral-core
. What piral-containers
brings to the table is a set of Pilet API extensions that can be used with piral
or piral-core
.
By default, these API extensions are not integrated in piral
, so you'd need to add them to your Piral instance.
The following functions are brought to the Pilet API.
createState()
Creates a new pilet global state container. The state container will essentially couple to the app shell global state container. It is, however, only available for use inside the pilet.
For authors of pilets
You can use the createState
function from the Pilet API to create your own sub states in the global state container of the Piral instance.
Example use:
import { PiletApi } from '<name-of-piral-instance>';
import { MyPage } from './MyPage';
export function setup(piral: PiletApi) {
const connect = piral.createState({
state: {
count: 0,
},
actions: {
increment(dispatch) {
dispatch(state => ({
count: state.count + 1,
}));
},
decrement(dispatch) {
dispatch(state => ({
count: state.count - 1,
}));
},
},
});
piral.registerPage(
'/sample',
connect(({ state, actions }) => <MyPage count={state.count} {...actions} />),
);
}
For Piral instance developers
The provided library only brings API extensions for pilets to a Piral instance.
For the setup of the library itself you'll need to import createContainersApi
from the piral-containers
package.
import { createContainersApi } from 'piral-containers';
The integration looks like:
const instance = createInstance({
// important part
extendApi: [createContainersApi()],
// ...
});
There are no options available.
Piral is released using the MIT license. For more information see the license file.
0.10.0 (February 2, 2020)
piral-mithril
for Mithril.js (#79)piral-aurelia
for Aurelia (#80)piral-litel
for LitElement (#85)piral-ember
for Ember.js (#96)piral-svelte
for Svelte (#97)piral-elm
for Elm (#118)piral-riot
for Riot.jspiral-react-15
for React v15piral-lazy
for generic lazy loadingreact-arbiter
with piral-base
(#109)--skip-install
(default: false
) flag to --install
(default: true
) for scaffolding--only-core
to --framework
(supporting piral-base
)--tag
to be a positional argument (for pilet upgrade
)setup
in piletsteardown
function in piletsdispatch
and readState
actionsstate
and router
in foreign contextFAQs
Plugin for creating a pilet state container in Piral.
The npm package piral-containers receives a total of 846 weekly downloads. As such, piral-containers popularity was classified as not popular.
We found that piral-containers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Python becomes GitHub's top language in 2024, driven by AI and data science projects, while AI-powered security tools are gaining adoption.
Security News
Dutch National Police and FBI dismantle Redline and Meta infostealer malware-as-a-service operations in Operation Magnus, seizing servers and source code.
Research
Security News
Socket is tracking a new trend where malicious actors are now exploiting the popularity of LLM research to spread malware through seemingly useful open source packages.