
Security News
The Nightmare Before Deployment
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.
@cfcs/vue3
Advanced tools
CFCs(Cross Framework Components) are modules that convert components into framework usage for Vue 3

CFCs(Cross Framework Components) are modules that convert components into framework usage for Vue 3.
# >= 2.7
$ npm install @cfcs/vue3
# < 2.7
$ npm install @cfcs/vue3
Vue 3 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/vue3";
// 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>
export default {
setup() {
const {
// state
value1,
// events
onEvent1,
// methods
method1,
} = useReactiveComponent({});
// use state
console.log(value1.value);
// 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.
The npm package @cfcs/vue3 receives a total of 2,885 weekly downloads. As such, @cfcs/vue3 popularity was classified as popular.
We found that @cfcs/vue3 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.

Security News
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.

Research
/Security News
Impostor NuGet package Tracer.Fody.NLog typosquats Tracer.Fody and its author, using homoglyph tricks, and exfiltrates Stratis wallet JSON/passwords to a Russian IP address.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.