Product
Introducing Java Support in Socket
We're excited to announce that Socket now supports the Java programming language.
@babel/preset-flow
Advanced tools
The @babel/preset-flow npm package is a Babel preset for transforming Flow syntax. Flow is a static type checker for JavaScript, and this preset allows developers to strip Flow types from their source code to make it compatible with standard JavaScript environments. This is useful for projects that use Flow for type checking but need to remove the type annotations for production builds.
Type Annotations Stripping
This code sample shows a class with Flow type annotations. The @babel/preset-flow will remove the ': number' type annotations when transforming the code.
class MyClass {
size: number;
constructor(size: number) {
this.size = size;
}
}
Interface Stripping
This code sample defines a Flow interface. The @babel/preset-flow will remove the entire interface declaration when transforming the code.
interface Serializable {
serialize(): string;
}
Type Alias Removal
This code sample shows a Flow type alias. The @babel/preset-flow will remove the type alias when transforming the code.
type Point = {
x: number,
y: number
};
Similar to @babel/preset-flow, this package is used to strip TypeScript types from the source code to convert it into plain JavaScript. It serves a similar purpose for TypeScript as @babel/preset-flow does for Flow.
This package is a lightweight alternative to Babel for removing Flow type annotations from files. It is faster and simpler but does not offer the extensive plugin system and transformations that Babel provides.
Babel preset for all Flow plugins.
See our website @babel/preset-flow for more information or the issues associated with this package.
Using npm:
npm install --save-dev @babel/preset-flow
or using yarn:
yarn add @babel/preset-flow --dev
v7.25.7 (2024-10-02)
babel-helper-validator-identifier
babel-traverse
babel-plugin-transform-classes
super()
check (@nicolo-ribaudo)babel-generator
infer
in compact mode (@nicolo-ribaudo)[no LineTerminator here]
after nodes (@nicolo-ribaudo)babel-types
babel-core
--experimental-require-module
(@nicolo-ribaudo)babel-helper-compilation-targets
, babel-helper-plugin-utils
, babel-preset-env
babel-plugin-proposal-destructuring-private
, babel-plugin-syntax-decimal
, babel-plugin-syntax-import-reflection
, babel-standalone
babel-generator
[no LineTerminator here]
before nodes (@nicolo-ribaudo)babel-plugin-transform-typescript
babel-types
BABEL_TYPES_8_BREAKING
at startup (@nicolo-ribaudo)FAQs
Babel preset for all Flow plugins.
The npm package @babel/preset-flow receives a total of 4,368,064 weekly downloads. As such, @babel/preset-flow popularity was classified as popular.
We found that @babel/preset-flow demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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.
Product
We're excited to announce that Socket now supports the Java programming language.
Security News
Socket detected a malicious Python package impersonating a popular browser cookie library to steal passwords, screenshots, webcam images, and Discord tokens.
Security News
Deno 2.0 is now available with enhanced package management, full Node.js and npm compatibility, improved performance, and support for major JavaScript frameworks.