Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@cfcs/svelte
Advanced tools
CFCs(Cross Framework Components) are modules that convert components into framework usage for Svelte
CFCs(Cross Framework Components) are modules that convert components into framework usage for Svelte.
$ npm install @cfcs/svelte
Svelte Component can be written by using useReactive
through REACTIVE_ADAPTER
(made with @cfcs/core) constant.
import { reactive } from "@cfcs/core";
const REACTIVE_ADAPTER = ({
emit,
onInit,
setEvents,
setMethods,
}) => {
setEvents(["event1"]);
setEvents(["method1"]);
const obj = reactive({
value1: 1,
method1() {
console.log("method1");
},
});
const inst = new YourModule();
onInit(() => {
requestAnimationFrame(() => {
value1.current = 2;
// emit `event1` event externally
emit("event1", e);
});
});
// Returns a reactive value.
return obj;
};
import { REACTIVE_ADAPTER } from "your-module";
import { useReactive, ReactiveAdapterResult } from "@cfcs/svelte";
// The result value of useReactive can be exposed as a type.
export type ReactiveComponentResult = ReactiveAdapterResult<typeof REACTIVE_ADAPTER>;
// Reactive Component can be created through useReactive.
export function useReactiveComponent(props) {
return useReactive(REACTIVE_ADAPTER, () => props);
}
<script>
const {
// state
value1,
// events
onEvent1,
// methods
method1,
} = useReactiveComponent({});
// use state
console.log($value1);
// use event
onEvent1(e => {
console.log(e);
};
// use method
method1();
</script>
Please file an Issue.
cfcs
is released under the MIT license.
CFCs
Copyright (c) 2023-present NAVER Corp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
Write once, create framework components that supports React, Vue, Svelte, and more.
We found that @cfcs/svelte demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.