
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@i-con/pcd-viewer
Advanced tools
This library is a visualization *React* module developed to efficiently render data output from the module [pcd-lod](https://github.com/AMDlab/pcd-lod), which converts point cloud data into an LOD (Level of Detail) format for efficient drawing. The purpos
This library is a visualization React module developed to efficiently render data output from the module pcd-lod, which converts point cloud data into an LOD (Level of Detail) format for efficient drawing. The purpose of this module is to facilitate effective visualization of this data on web browsers.
It includes a collection of components using React Three Fiber, allowing for easy integration into any React project.
npm install @i-con/pcd-viewer # or yarn add @i-con/pcd-viewer
/**
* Example component for the point cloud.
* fetches & renders the point cloud in the /examples/public/uav-8bit directory.
*/
const Example = () => {
const root = "/uav-8bit";
const [meta, setMeta] = useState<PointCloudMeta | null>(null);
// Fetch & set the metadata of the point cloud.
useEffect(() => {
axios.get(`${root}/meta.json`).then(({ data }) => {
setMeta(data);
});
}, [root]);
// Loader callback for the point cloud.
const loader: PointCloudLODLoader<PngBuffer> = useCallback((props) => {
const { address, color } = props;
const { lod, coordinate } = address;
// Construct the URL of the PNG file from the address.
const url = `${root}/${lod}/${coordinate.x}-${coordinate.y}-${coordinate.z}`;
return pngLoader({ url, color });
}, [root]);
return meta !== null ? (
<Visualizer
pointCloud={{
meta,
loader,
parser: pngParser,
pointSize: 15,
lodHelper: true,
}}
/>
) : null;
};
git clone pcd-viewer
cd pcd-viewer
npm install # or yarn install
npm run dev # or yarn dev
# then serve the example folder with a static server
FAQs
This library is a visualization *React* module developed to efficiently render data output from the module [pcd-lod](https://github.com/AMDlab/pcd-lod), which converts point cloud data into an LOD (Level of Detail) format for efficient drawing. The purpos
The npm package @i-con/pcd-viewer receives a total of 7 weekly downloads. As such, @i-con/pcd-viewer popularity was classified as not popular.
We found that @i-con/pcd-viewer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.